atom: Add nightly release channel (#42198)

* Add nightly release channel

Atom has [nightly versions since June 2019](https://blog.atom.io/2019/06/21/introducing-atom-nightly-releases.html), this PR adds it to the release channels

* remove quotes
This commit is contained in:
Jan T. Sott 2020-02-08 01:44:33 +01:00 committed by GitHub
parent 111a349f75
commit 722d7e70fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,9 +126,9 @@ export interface AtomEnvironment {
/**
* Gets the release channel of the Atom application.
* Returns the release channel, which can be 'dev', 'beta', or 'stable'.
* Returns the release channel, which can be 'dev', 'nightly', 'beta', or 'stable'.
*/
getReleaseChannel(): "dev"|"beta"|"stable";
getReleaseChannel(): "dev"|"nightly"|"beta"|"stable";
/** Returns a boolean that is true if the current version is an official release. */
isReleasedVersion(): boolean;