From 722d7e70fac2081c3b2a5ca68549c828161af7da Mon Sep 17 00:00:00 2001 From: "Jan T. Sott" Date: Sat, 8 Feb 2020 01:44:33 +0100 Subject: [PATCH] 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 --- types/atom/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/atom/index.d.ts b/types/atom/index.d.ts index fb230420c0..5fb38fba96 100644 --- a/types/atom/index.d.ts +++ b/types/atom/index.d.ts @@ -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;