Merge pull request #25 from microsoft/add-ts-3.7

Add Typescript 3.7
This commit is contained in:
Nathan Shively-Sanders
2019-09-03 09:46:35 -07:00
committed by Andrew Branch
parent 41663355ca
commit 1e24b8166c
2 changed files with 3 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ Example:
/** Parse-able TypeScript versions. Only add to this list if we will support this version on DefinitelyTyped. */
export type TypeScriptVersion =
"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";
"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";
export namespace TypeScriptVersion {
export const all: ReadonlyArray<TypeScriptVersion> =
["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"];
@@ -47,6 +47,7 @@ export namespace TypeScriptVersion {
"ts3.4",
"ts3.5",
"ts3.6",
"ts3.7",
"latest",
];

View File

@@ -1,7 +1,7 @@
{
"name": "definitelytyped-header-parser",
"author": "Nathan Shively-Sanders <nathansa@microsoft.com> (http://github.com/Microsoft/definitelytyped-header-parser)",
"version": "1.2.0",
"version": "3.7.0",
"description": "",
"main": "index.js",
"types": "index.d.ts",