@definitelytyped/typescript-versions 0.0.157 → 0.0.158

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  /** Parseable but unsupported TypeScript versions. */
2
- export declare type UnsupportedTypeScriptVersion = "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" | "3.0" | "3.1" | "3.2" | "3.3" | "3.4" | "3.5" | "3.6" | "3.7" | "3.8" | "3.9" | "4.0" | "4.1" | "4.2";
2
+ export type UnsupportedTypeScriptVersion = "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" | "3.0" | "3.1" | "3.2" | "3.3" | "3.4" | "3.5" | "3.6" | "3.7" | "3.8" | "3.9" | "4.0" | "4.1" | "4.2";
3
3
  /**
4
4
  * Parseable and supported TypeScript versions.
5
5
  * Only add to this list if we will support this version on Definitely Typed.
6
6
  */
7
- export declare type TypeScriptVersion = "4.3" | "4.4" | "4.5" | "4.6" | "4.7" | "4.8" | "4.9" | "5.0" | "5.1";
8
- export declare type AllTypeScriptVersion = UnsupportedTypeScriptVersion | TypeScriptVersion;
7
+ export type TypeScriptVersion = "4.3" | "4.4" | "4.5" | "4.6" | "4.7" | "4.8" | "4.9" | "5.0" | "5.1";
8
+ export type AllTypeScriptVersion = UnsupportedTypeScriptVersion | TypeScriptVersion;
9
9
  export declare namespace TypeScriptVersion {
10
10
  /** Add to this list when a version actually ships. */
11
11
  const shipped: readonly TypeScriptVersion[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@definitelytyped/typescript-versions",
3
- "version": "0.0.157",
3
+ "version": "0.0.158",
4
4
  "description": "List of supported TypeScript versions",
5
5
  "author": "Andrew Branch <andrew@wheream.io>",
6
6
  "homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/master/packages/typescript-versions#readme",
@@ -17,5 +17,5 @@
17
17
  "bugs": {
18
18
  "url": "https://github.com/microsoft/DefinitelyTyped-tools/issues"
19
19
  },
20
- "gitHead": "1ec9262caa58f285ef39619770385f951c309da6"
20
+ "gitHead": "cb2436d5ce96139d7665c96aa52ddf3970ede404"
21
21
  }