mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-16 02:30:36 +00:00
Updating typescript version and js file
This commit is contained in:
320
lib/run.js
320
lib/run.js
@ -1,149 +1,175 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
// Copyright (c) Microsoft Corporation.
|
// Copyright (c) Microsoft Corporation.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
if (k2 === undefined) k2 = k;
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
}) : (function(o, m, k, k2) {
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
if (k2 === undefined) k2 = k;
|
||||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
o[k2] = m[k];
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
}));
|
||||||
});
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||||
};
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
}) : function(o, v) {
|
||||||
if (mod && mod.__esModule) return mod;
|
o["default"] = v;
|
||||||
var result = {};
|
});
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
result["default"] = mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
return result;
|
var result = {};
|
||||||
};
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
__setModuleDefault(result, mod);
|
||||||
const os = __importStar(require("os"));
|
return result;
|
||||||
const path = __importStar(require("path"));
|
};
|
||||||
const util = __importStar(require("util"));
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
const fs = __importStar(require("fs"));
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||||
const semver = __importStar(require("semver"));
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
const toolCache = __importStar(require("@actions/tool-cache"));
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
const core = __importStar(require("@actions/core"));
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
const helmToolName = 'helm';
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||||
const stableHelmVersion = 'v3.2.1';
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
const helmAllReleasesUrl = 'https://api.github.com/repos/helm/helm/releases';
|
});
|
||||||
function getExecutableExtension() {
|
};
|
||||||
if (os.type().match(/^Win/)) {
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
return '.exe';
|
const os = __importStar(require("os"));
|
||||||
}
|
const path = __importStar(require("path"));
|
||||||
return '';
|
const util = __importStar(require("util"));
|
||||||
}
|
const fs = __importStar(require("fs"));
|
||||||
function getHelmDownloadURL(version) {
|
const toolCache = __importStar(require("@actions/tool-cache"));
|
||||||
switch (os.type()) {
|
const core = __importStar(require("@actions/core"));
|
||||||
case 'Linux':
|
const graphql_1 = require("@octokit/graphql");
|
||||||
return util.format('https://get.helm.sh/helm-%s-linux-amd64.zip', version);
|
const helmToolName = 'helm';
|
||||||
case 'Darwin':
|
const stableHelmVersion = 'v3.2.1';
|
||||||
return util.format('https://get.helm.sh/helm-%s-darwin-amd64.zip', version);
|
const LATEST_HELM2_VERSION = '2.*';
|
||||||
case 'Windows_NT':
|
const LATEST_HELM3_VERSION = '3.*';
|
||||||
default:
|
function getExecutableExtension() {
|
||||||
return util.format('https://get.helm.sh/helm-%s-windows-amd64.zip', version);
|
if (os.type().match(/^Win/)) {
|
||||||
}
|
return '.exe';
|
||||||
}
|
}
|
||||||
function getStableHelmVersion() {
|
return '';
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
}
|
||||||
try {
|
function getHelmDownloadURL(version) {
|
||||||
const downloadPath = yield toolCache.downloadTool(helmAllReleasesUrl);
|
switch (os.type()) {
|
||||||
const responseArray = JSON.parse(fs.readFileSync(downloadPath, 'utf8').toString().trim());
|
case 'Linux':
|
||||||
let latestHelmVersion = semver.clean(stableHelmVersion);
|
return util.format('https://get.helm.sh/helm-%s-linux-amd64.zip', version);
|
||||||
responseArray.forEach(response => {
|
case 'Darwin':
|
||||||
if (response && response.tag_name) {
|
return util.format('https://get.helm.sh/helm-%s-darwin-amd64.zip', version);
|
||||||
let currentHelmVerison = semver.clean(response.tag_name.toString());
|
case 'Windows_NT':
|
||||||
if (currentHelmVerison) {
|
default:
|
||||||
if (currentHelmVerison.toString().indexOf('rc') == -1 && semver.gt(currentHelmVerison, latestHelmVersion)) {
|
return util.format('https://get.helm.sh/helm-%s-windows-amd64.zip', version);
|
||||||
//If current helm version is not a pre release and is greater than latest helm version
|
}
|
||||||
latestHelmVersion = currentHelmVerison;
|
}
|
||||||
}
|
var walkSync = function (dir, filelist, fileToFind) {
|
||||||
}
|
var files = fs.readdirSync(dir);
|
||||||
}
|
filelist = filelist || [];
|
||||||
});
|
files.forEach(function (file) {
|
||||||
latestHelmVersion = "v" + latestHelmVersion;
|
if (fs.statSync(path.join(dir, file)).isDirectory()) {
|
||||||
return latestHelmVersion;
|
filelist = walkSync(path.join(dir, file), filelist, fileToFind);
|
||||||
}
|
}
|
||||||
catch (error) {
|
else {
|
||||||
core.warning(util.format("Cannot get the latest Helm info from %s. Error %s. Using default Helm version %s.", helmAllReleasesUrl, error, stableHelmVersion));
|
core.debug(file);
|
||||||
}
|
if (file == fileToFind) {
|
||||||
return stableHelmVersion;
|
filelist.push(path.join(dir, file));
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
var walkSync = function (dir, filelist, fileToFind) {
|
});
|
||||||
var files = fs.readdirSync(dir);
|
return filelist;
|
||||||
filelist = filelist || [];
|
};
|
||||||
files.forEach(function (file) {
|
function downloadHelm(version) {
|
||||||
if (fs.statSync(path.join(dir, file)).isDirectory()) {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
filelist = walkSync(path.join(dir, file), filelist, fileToFind);
|
if (!version) {
|
||||||
}
|
version = yield getLatestHelmVersionFor("v3");
|
||||||
else {
|
}
|
||||||
core.debug(file);
|
let cachedToolpath = toolCache.find(helmToolName, version);
|
||||||
if (file == fileToFind) {
|
if (!cachedToolpath) {
|
||||||
filelist.push(path.join(dir, file));
|
let helmDownloadPath;
|
||||||
|
try {
|
||||||
|
helmDownloadPath = yield toolCache.downloadTool(getHelmDownloadURL(version));
|
||||||
|
}
|
||||||
|
catch (exception) {
|
||||||
|
throw new Error(util.format("Failed to download Helm from location ", getHelmDownloadURL(version)));
|
||||||
|
}
|
||||||
|
fs.chmodSync(helmDownloadPath, '777');
|
||||||
|
const unzipedHelmPath = yield toolCache.extractZip(helmDownloadPath);
|
||||||
|
cachedToolpath = yield toolCache.cacheDir(unzipedHelmPath, helmToolName, version);
|
||||||
|
}
|
||||||
|
const helmpath = findHelm(cachedToolpath);
|
||||||
|
if (!helmpath) {
|
||||||
|
throw new Error(util.format("Helm executable not found in path ", cachedToolpath));
|
||||||
|
}
|
||||||
|
fs.chmodSync(helmpath, '777');
|
||||||
|
return helmpath;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function getLatestHelmVersionFor(type) {
|
||||||
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
|
const token = core.getInput('token', { 'required': true });
|
||||||
|
try {
|
||||||
|
const { repository } = yield graphql_1.graphql(`{
|
||||||
|
repository(name:"helm", owner:"helm") {
|
||||||
|
releases(last: 100) {
|
||||||
|
nodes {
|
||||||
|
tagName
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
return filelist;
|
}`, {
|
||||||
};
|
headers: {
|
||||||
function downloadHelm(version) {
|
authorization: `token ${token}`
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
}
|
||||||
if (!version) {
|
});
|
||||||
version = yield getStableHelmVersion();
|
const releases = repository.releases.nodes.reverse();
|
||||||
}
|
let latestValidRelease = releases.find(release => isValidVersion(release.tagName, type));
|
||||||
let cachedToolpath = toolCache.find(helmToolName, version);
|
if (latestValidRelease)
|
||||||
if (!cachedToolpath) {
|
return latestValidRelease.tagName;
|
||||||
let helmDownloadPath;
|
}
|
||||||
try {
|
catch (err) {
|
||||||
helmDownloadPath = yield toolCache.downloadTool(getHelmDownloadURL(version));
|
core.warning(util.format("Error while fetching the latest Helm %s release. Error: %s. Using default Helm version %s.", type, err.toString(), stableHelmVersion));
|
||||||
}
|
}
|
||||||
catch (exception) {
|
core.warning(util.format("Could not find stable release for Helm %s. Using default Helm version %s.", type, stableHelmVersion));
|
||||||
throw new Error(util.format("Failed to download Helm from location ", getHelmDownloadURL(version)));
|
return stableHelmVersion;
|
||||||
}
|
});
|
||||||
fs.chmodSync(helmDownloadPath, '777');
|
}
|
||||||
const unzipedHelmPath = yield toolCache.extractZip(helmDownloadPath);
|
// isValidVersion checks if verison matches the specified type and is a stable release
|
||||||
cachedToolpath = yield toolCache.cacheDir(unzipedHelmPath, helmToolName, version);
|
function isValidVersion(version, type) {
|
||||||
}
|
if (!version.toLocaleLowerCase().startsWith(type))
|
||||||
const helmpath = findHelm(cachedToolpath);
|
return false;
|
||||||
if (!helmpath) {
|
return version.indexOf('rc') == -1;
|
||||||
throw new Error(util.format("Helm executable not found in path ", cachedToolpath));
|
}
|
||||||
}
|
function findHelm(rootFolder) {
|
||||||
fs.chmodSync(helmpath, '777');
|
fs.chmodSync(rootFolder, '777');
|
||||||
return helmpath;
|
var filelist = [];
|
||||||
});
|
walkSync(rootFolder, filelist, helmToolName + getExecutableExtension());
|
||||||
}
|
if (!filelist) {
|
||||||
function findHelm(rootFolder) {
|
throw new Error(util.format("Helm executable not found in path ", rootFolder));
|
||||||
fs.chmodSync(rootFolder, '777');
|
}
|
||||||
var filelist = [];
|
else {
|
||||||
walkSync(rootFolder, filelist, helmToolName + getExecutableExtension());
|
return filelist[0];
|
||||||
if (!filelist) {
|
}
|
||||||
throw new Error(util.format("Helm executable not found in path ", rootFolder));
|
}
|
||||||
}
|
function run() {
|
||||||
else {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
return filelist[0];
|
let version = core.getInput('version', { 'required': true });
|
||||||
}
|
if (version.toLocaleLowerCase() === 'latest' || version === LATEST_HELM3_VERSION) {
|
||||||
}
|
version = yield getLatestHelmVersionFor("v3");
|
||||||
function run() {
|
}
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
else if (version === LATEST_HELM2_VERSION) {
|
||||||
let version = core.getInput('version', { 'required': true });
|
version = yield getLatestHelmVersionFor("v2");
|
||||||
if (version.toLocaleLowerCase() === 'latest') {
|
}
|
||||||
version = yield getStableHelmVersion();
|
else if (!version.toLocaleLowerCase().startsWith('v')) {
|
||||||
}
|
version = 'v' + version;
|
||||||
else if (!version.toLocaleLowerCase().startsWith('v')) {
|
}
|
||||||
version = 'v' + version;
|
core.debug(util.format("Downloading %s", version));
|
||||||
}
|
let cachedPath = yield downloadHelm(version);
|
||||||
let cachedPath = yield downloadHelm(version);
|
try {
|
||||||
try {
|
if (!process.env['PATH'].startsWith(path.dirname(cachedPath))) {
|
||||||
if (!process.env['PATH'].startsWith(path.dirname(cachedPath))) {
|
core.addPath(path.dirname(cachedPath));
|
||||||
core.addPath(path.dirname(cachedPath));
|
}
|
||||||
}
|
}
|
||||||
}
|
catch (_a) {
|
||||||
catch (_a) {
|
//do nothing, set as output variable
|
||||||
//do nothing, set as output variable
|
}
|
||||||
}
|
console.log(`Helm tool version: '${version}' has been cached at ${cachedPath}`);
|
||||||
console.log(`Helm tool version: '${version}' has been cached at ${cachedPath}`);
|
core.setOutput('helm-path', cachedPath);
|
||||||
core.setOutput('helm-path', cachedPath);
|
});
|
||||||
});
|
}
|
||||||
}
|
run().catch(core.setFailed);
|
||||||
run().catch(core.setFailed);
|
|
||||||
|
12
node_modules/.bin/tsc.cmd
generated
vendored
12
node_modules/.bin/tsc.cmd
generated
vendored
@ -1,7 +1,7 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsc" %*
|
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsc" %*
|
||||||
) ELSE (
|
) ELSE (
|
||||||
@SETLOCAL
|
@SETLOCAL
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
node "%~dp0\..\typescript\bin\tsc" %*
|
node "%~dp0\..\typescript\bin\tsc" %*
|
||||||
)
|
)
|
12
node_modules/.bin/tsserver.cmd
generated
vendored
12
node_modules/.bin/tsserver.cmd
generated
vendored
@ -1,7 +1,7 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsserver" %*
|
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsserver" %*
|
||||||
) ELSE (
|
) ELSE (
|
||||||
@SETLOCAL
|
@SETLOCAL
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
node "%~dp0\..\typescript\bin\tsserver" %*
|
node "%~dp0\..\typescript\bin\tsserver" %*
|
||||||
)
|
)
|
1
node_modules/typescript/.yarnrc
generated
vendored
1
node_modules/typescript/.yarnrc
generated
vendored
@ -1 +0,0 @@
|
|||||||
--install.no-lockfile true
|
|
828
node_modules/typescript/AUTHORS.md
generated
vendored
828
node_modules/typescript/AUTHORS.md
generated
vendored
@ -1,348 +1,480 @@
|
|||||||
TypeScript is authored by:
|
TypeScript is authored by:
|
||||||
* Aaron Holmes
|
|
||||||
* Abubaker Bashir
|
- 0verk1ll
|
||||||
* Adam Freidin
|
- Abubaker Bashir
|
||||||
* Adi Dahiya
|
- Adam Freidin
|
||||||
* Aditya Daflapurkar
|
- Adam Postma
|
||||||
* Adnan Chowdhury
|
- Adi Dahiya
|
||||||
* Adrian Leonhard
|
- Aditya Daflapurkar
|
||||||
* Adrien Gibrat
|
- Adnan Chowdhury
|
||||||
* Ahmad Farid
|
- Adrian Leonhard
|
||||||
* Akshar Patel
|
- Adrien Gibrat
|
||||||
* Alan Agius
|
- Ahmad Farid
|
||||||
* Alex Chugaev
|
- Ajay Poshak
|
||||||
* Alex Eagle
|
- Alan Agius
|
||||||
* Alex Khomchenko
|
- Alan Pierce
|
||||||
* Alex Ryan
|
- Alessandro Vergani
|
||||||
* Alexander Kuvaev
|
- Alex Chugaev
|
||||||
* Alexander Rusakov
|
- Alex Eagle
|
||||||
* Alexander Tarasyuk
|
- Alex Khomchenko
|
||||||
* Ali Sabzevari
|
- Alex Ryan
|
||||||
* Aliaksandr Radzivanovich
|
- Alexander
|
||||||
* Aluan Haddad
|
- Alexander Kuvaev
|
||||||
* Anatoly Ressin
|
- Alexander Rusakov
|
||||||
* Anders Hejlsberg
|
- Alexander Tarasyuk
|
||||||
* Andreas Martin
|
- Ali Sabzevari
|
||||||
* Andrej Baran
|
- Aluan Haddad
|
||||||
* Andrew Casey
|
- amaksimovich2
|
||||||
* Andrew Faulkner
|
- Anatoly Ressin
|
||||||
* Andrew Ochsner
|
- Anders Hejlsberg
|
||||||
* Andrew Stegmaier
|
- Anders Kaseorg
|
||||||
* Andrew Z Allen
|
- Andre Sutherland
|
||||||
* András Parditka
|
- Andreas Martin
|
||||||
* Andy Hanson
|
- Andrej Baran
|
||||||
* Anil Anar
|
- Andrew
|
||||||
* Anton Khlynovskiy
|
- Andrew Branch
|
||||||
* Anton Tolmachev
|
- Andrew Casey
|
||||||
* Anubha Mathur
|
- Andrew Faulkner
|
||||||
* Armando Aguirre
|
- Andrew Ochsner
|
||||||
* Arnaud Tournier
|
- Andrew Stegmaier
|
||||||
* Arnav Singh
|
- Andrew Z Allen
|
||||||
* Artem Tyurin
|
- Andrey Roenko
|
||||||
* Arthur Ozga
|
- Andrii Dieiev
|
||||||
* Asad Saeeduddin
|
- András Parditka
|
||||||
* Avery Morin
|
- Andy Hanson
|
||||||
* Basarat Ali Syed
|
- Anil Anar
|
||||||
* @begincalendar
|
- Anix
|
||||||
* Ben Duffield
|
- Anton Khlynovskiy
|
||||||
* Ben Mosher
|
- Anton Tolmachev
|
||||||
* Benjamin Bock
|
- Anubha Mathur
|
||||||
* Benjamin Lichtman
|
- AnyhowStep
|
||||||
* Benny Neugebauer
|
- Armando Aguirre
|
||||||
* Bill Ticehurst
|
- Arnaud Tournier
|
||||||
* Blaine Bublitz
|
- Arnav Singh
|
||||||
* Blake Embrey
|
- Arpad Borsos
|
||||||
* @bluelovers
|
- Artem Tyurin
|
||||||
* @bootstraponline
|
- Arthur Ozga
|
||||||
* Bowden Kelly
|
- Asad Saeeduddin
|
||||||
* Bowden Kenny
|
- Austin Cummings
|
||||||
* Brandon Slade
|
- Avery Morin
|
||||||
* Brett Mayen
|
- Aziz Khambati
|
||||||
* Bryan Forbes
|
- Basarat Ali Syed
|
||||||
* Caitlin Potter
|
- @begincalendar
|
||||||
* Cameron Taggart
|
- Ben Duffield
|
||||||
* @cedvdb
|
- Ben Lichtman
|
||||||
* Charles Pierce
|
- Ben Mosher
|
||||||
* Charly POLY
|
- Benedikt Meurer
|
||||||
* Chris Bubernak
|
- Benjamin Bock
|
||||||
* Christophe Vidal
|
- Benjamin Lichtman
|
||||||
* Chuck Jazdzewski
|
- Benny Neugebauer
|
||||||
* Colby Russell
|
- BigAru
|
||||||
* Colin Snover
|
- Bill Ticehurst
|
||||||
* Cotton Hou
|
- Blaine Bublitz
|
||||||
* Cyrus Najmabadi
|
- Blake Embrey
|
||||||
* Dafrok Zhang
|
- @bluelovers
|
||||||
* Dahan Gong
|
- @bootstraponline
|
||||||
* Dan Corder
|
- Bowden Kelly
|
||||||
* Dan Freeman
|
- Bowden Kenny
|
||||||
* Dan Quirk
|
- Brad Zacher
|
||||||
* Daniel Gooss
|
- Brandon Banks
|
||||||
* Daniel Hollocher
|
- Brandon Bloom
|
||||||
* Daniel Król
|
- Brandon Slade
|
||||||
* Daniel Lehenbauer
|
- Brendan Kenny
|
||||||
* Daniel Rosenwasser
|
- Brett Mayen
|
||||||
* David Kmenta
|
- Brian Terlson
|
||||||
* David Li
|
- Bryan Forbes
|
||||||
* David Sheldrick
|
- Caitlin Potter
|
||||||
* David Sherret
|
- Caleb Sander
|
||||||
* David Souther
|
- Cameron Taggart
|
||||||
* David Staheli
|
- @cedvdb
|
||||||
* Denis Nedelyaev
|
- Charles
|
||||||
* Derek P Sifford
|
- Charles Pierce
|
||||||
* Dhruv Rajvanshi
|
- Charly POLY
|
||||||
* Dick van den Brink
|
- Chris Bubernak
|
||||||
* Diogo Franco (Kovensky)
|
- Chris Patterson
|
||||||
* Dirk Bäumer
|
- christian
|
||||||
* Dirk Holtwick
|
- Christophe Vidal
|
||||||
* Dom Chen
|
- Chuck Jazdzewski
|
||||||
* Donald Pipowitch
|
- Clay Miller
|
||||||
* Doug Ilijev
|
- Colby Russell
|
||||||
* @e-cloud
|
- Colin Snover
|
||||||
* Ecole Keine
|
- Collins Abitekaniza
|
||||||
* Elisée Maurer
|
- Connor Clark
|
||||||
* Elizabeth Dinella
|
- Cotton Hou
|
||||||
* Emilio García-Pumarino
|
- csigs
|
||||||
* Eric Grube
|
- Cyrus Najmabadi
|
||||||
* Eric Tsang
|
- Dafrok Zhang
|
||||||
* Erik Edrosa
|
- Dahan Gong
|
||||||
* Erik McClenney
|
- Daiki Nishikawa
|
||||||
* Esakki Raj
|
- Dan Corder
|
||||||
* Ethan Resnick
|
- Dan Freeman
|
||||||
* Ethan Rubio
|
- Dan Quirk
|
||||||
* Eugene Timokhov
|
- Dan Rollo
|
||||||
* Evan Martin
|
- Daniel Gooss
|
||||||
* Evan Sebastian
|
- Daniel Imms
|
||||||
* Eyas Sharaiha
|
- Daniel Krom
|
||||||
* Fabian Cook
|
- Daniel Król
|
||||||
* @falsandtru
|
- Daniel Lehenbauer
|
||||||
* Filipe Silva
|
- Daniel Rosenwasser
|
||||||
* @flowmemo
|
- David Li
|
||||||
* Francois Wouts
|
- David Sheldrick
|
||||||
* Frank Wallis
|
- David Sherret
|
||||||
* Franklin Tse
|
- David Souther
|
||||||
* František Žiacik
|
- David Staheli
|
||||||
* Gabe Moothart
|
- Denis Nedelyaev
|
||||||
* Gabriel Isenberg
|
- Derek P Sifford
|
||||||
* Gilad Peleg
|
- Dhruv Rajvanshi
|
||||||
* Godfrey Chan
|
- Dick van den Brink
|
||||||
* Graeme Wicksted
|
- Diogo Franco (Kovensky)
|
||||||
* Guilherme Oenning
|
- Dirk Bäumer
|
||||||
* Guillaume Salles
|
- Dirk Holtwick
|
||||||
* Guy Bedford
|
- Dmitrijs Minajevs
|
||||||
* Halasi Tamás
|
- Dom Chen
|
||||||
* Harald Niesche
|
- Donald Pipowitch
|
||||||
* Hendrik Liebau
|
- Doug Ilijev
|
||||||
* Henry Mercer
|
- dreamran43@gmail.com
|
||||||
* Herrington Darkholme
|
- @e-cloud
|
||||||
* Holger Jeromin
|
- Ecole Keine
|
||||||
* Homa Wong
|
- Eddie Jaoude
|
||||||
* Iain Monro
|
- Edward Thomson
|
||||||
* @IdeaHunter
|
- EECOLOR
|
||||||
* Igor Novozhilov
|
- Eli Barzilay
|
||||||
* Ika
|
- Elizabeth Dinella
|
||||||
* Ingvar Stepanyan
|
- Ely Alamillo
|
||||||
* Isiah Meadows
|
- Eric Grube
|
||||||
* Ivan Enderlin
|
- Eric Tsang
|
||||||
* Ivo Gabe de Wolff
|
- Erik Edrosa
|
||||||
* Iwata Hidetaka
|
- Erik McClenney
|
||||||
* Jack Williams
|
- Esakki Raj
|
||||||
* Jakub Korzeniowski
|
- Ethan Resnick
|
||||||
* Jakub Młokosiewicz
|
- Ethan Rubio
|
||||||
* James Henry
|
- Eugene Timokhov
|
||||||
* James Whitney
|
- Evan Cahill
|
||||||
* Jan Melcher
|
- Evan Martin
|
||||||
* Jason Freeman
|
- Evan Sebastian
|
||||||
* Jason Jarrett
|
- ExE Boss
|
||||||
* Jason Killian
|
- Eyas Sharaiha
|
||||||
* Jason Ramsay
|
- Fabian Cook
|
||||||
* JBerger
|
- @falsandtru
|
||||||
* Jed Mao
|
- Filipe Silva
|
||||||
* Jeffrey Morlan
|
- @flowmemo
|
||||||
* Jesse Schalken
|
- Forbes Lindesay
|
||||||
* Jing Ma
|
- Francois Hendriks
|
||||||
* Jiri Tobisek
|
- Francois Wouts
|
||||||
* Joe Calzaretta
|
- Frank Wallis
|
||||||
* Joe Chung
|
- František Žiacik
|
||||||
* Joel Day
|
- Frederico Bittencourt
|
||||||
* Joey Wilson
|
- fullheightcoding
|
||||||
* Johannes Rieken
|
- Gabe Moothart
|
||||||
* John Doe
|
- Gabriel Isenberg
|
||||||
* John Vilk
|
- Gabriela Araujo Britto
|
||||||
* Jonathan Bond-Caron
|
- Gabriela Britto
|
||||||
* Jonathan Park
|
- gb714us
|
||||||
* Jonathan Toland
|
- Gilad Peleg
|
||||||
* Jonathan Turner
|
- Godfrey Chan
|
||||||
* Jonathon Smith
|
- Gorka Hernández Estomba
|
||||||
* Jordi Oliveras Rovira
|
- Graeme Wicksted
|
||||||
* Joscha Feth
|
- Guillaume Salles
|
||||||
* Josh Abernathy
|
- Guy Bedford
|
||||||
* Josh Goldberg
|
- hafiz
|
||||||
* Josh Kalderimis
|
- Halasi Tamás
|
||||||
* Josh Soref
|
- Hendrik Liebau
|
||||||
* Juan Luis Boya García
|
- Henry Mercer
|
||||||
* Julian Williams
|
- Herrington Darkholme
|
||||||
* Justin Bay
|
- Hoang Pham
|
||||||
* Justin Johansson
|
- Holger Jeromin
|
||||||
* K. Preißer
|
- Homa Wong
|
||||||
* Kagami Sascha Rosylight
|
- Hye Sung Jung
|
||||||
* Kanchalai Tanglertsampan
|
- Iain Monro
|
||||||
* Kate Miháliková
|
- @IdeaHunter
|
||||||
* Keith Mashinter
|
- Igor Novozhilov
|
||||||
* Ken Howard
|
- Igor Oleinikov
|
||||||
* Kenji Imamula
|
- Ika
|
||||||
* Kerem Kat
|
- iliashkolyar
|
||||||
* Kevin Donnelly
|
- IllusionMH
|
||||||
* Kevin Gibbons
|
- Ingvar Stepanyan
|
||||||
* Kevin Lang
|
- Ingvar Stepanyan
|
||||||
* Khải
|
- Isiah Meadows
|
||||||
* Kitson Kelly
|
- ispedals
|
||||||
* Klaus Meinhardt
|
- Ivan Enderlin
|
||||||
* Kris Zyp
|
- Ivo Gabe de Wolff
|
||||||
* Kyle Kelley
|
- Iwata Hidetaka
|
||||||
* Kārlis Gaņģis
|
- Jack Bates
|
||||||
* Lorant Pinter
|
- Jack Williams
|
||||||
* Lucien Greathouse
|
- Jake Boone
|
||||||
* Lukas Elmer
|
- Jakub Korzeniowski
|
||||||
* Maarten Sijm
|
- Jakub Młokosiewicz
|
||||||
* Magnus Hiie
|
- James Henry
|
||||||
* Magnus Kulke
|
- James Keane
|
||||||
* Manish Giri
|
- James Whitney
|
||||||
* Marin Marinov
|
- Jan Melcher
|
||||||
* Marius Schulz
|
- Jason Freeman
|
||||||
* Markus Johnsson
|
- Jason Jarrett
|
||||||
* Martin Hiller
|
- Jason Killian
|
||||||
* Martin Probst
|
- Jason Ramsay
|
||||||
* Martin Vseticka
|
- JBerger
|
||||||
* Martyn Janes
|
- Jean Pierre
|
||||||
* Masahiro Wakame
|
- Jed Mao
|
||||||
* Mateusz Burzyński
|
- Jeff Wilcox
|
||||||
* Matt Bierner
|
- Jeffrey Morlan
|
||||||
* Matt McCutchen
|
- Jesse Schalken
|
||||||
* Matt Mitchell
|
- Jesse Trinity
|
||||||
* Mattias Buelens
|
- Jing Ma
|
||||||
* Mattias Buelens
|
- Jiri Tobisek
|
||||||
* Max Deepfield
|
- Joe Calzaretta
|
||||||
* Maxwell Paul Brickner
|
- Joe Chung
|
||||||
* @meyer
|
- Joel Day
|
||||||
* Micah Zoltu
|
- Joey Watts
|
||||||
* @micbou
|
- Johannes Rieken
|
||||||
* Michael
|
- John Doe
|
||||||
* Michael Bromley
|
- John Vilk
|
||||||
* Mike Busyrev
|
- Jonathan Bond-Caron
|
||||||
* Mike Morearty
|
- Jonathan Park
|
||||||
* Mine Starks
|
- Jonathan Toland
|
||||||
* Mohamed Hegazy
|
- Jordan Harband
|
||||||
* Mohsen Azimi
|
- Jordi Oliveras Rovira
|
||||||
* Myles Megyesi
|
- Joscha Feth
|
||||||
* Nathan Shively-Sanders
|
- Joseph Wunderlich
|
||||||
* Nathan Yee
|
- Josh Abernathy
|
||||||
* Nicolas Henry
|
- Josh Goldberg
|
||||||
* Nicu Micleușanu
|
- Josh Kalderimis
|
||||||
* @nieltg
|
- Josh Soref
|
||||||
* Nima Zahedi
|
- Juan Luis Boya García
|
||||||
* Noah Chen
|
- Julian Williams
|
||||||
* Noel Varanda
|
- Justin Bay
|
||||||
* Noj Vek
|
- Justin Johansson
|
||||||
* Oleg Mihailik
|
- jwbay
|
||||||
* Oleksandr Chekhovskyi
|
- K. Preißer
|
||||||
* Omer Sheikh
|
- Kagami Sascha Rosylight
|
||||||
* Orta Therox
|
- Kanchalai Tanglertsampan
|
||||||
* Oskar Segersva¨rd
|
- karthikkp
|
||||||
* Oussama Ben Brahim
|
- Kate Miháliková
|
||||||
* Patrick Zhong
|
- Keen Yee Liau
|
||||||
* Paul Jolly
|
- Keith Mashinter
|
||||||
* Paul Koerbitz
|
- Ken Howard
|
||||||
* Paul van Brenk
|
- Kenji Imamula
|
||||||
* @pcbro
|
- Kerem Kat
|
||||||
* Pedro Maltez
|
- Kevin Donnelly
|
||||||
* Perry Jiang
|
- Kevin Gibbons
|
||||||
* Peter Burns
|
- Kevin Lang
|
||||||
* Philip Bulley
|
- Khải
|
||||||
* Philippe Voinov
|
- Kitson Kelly
|
||||||
* Pi Lanningham
|
- Klaus Meinhardt
|
||||||
* Piero Cangianiello
|
- Kris Zyp
|
||||||
* @piloopin
|
- Kyle Kelley
|
||||||
* Prayag Verma
|
- Kārlis Gaņģis
|
||||||
* Priyantha Lankapura
|
- laoxiong
|
||||||
* @progre
|
- Leon Aves
|
||||||
* Punya Biswal
|
- Limon Monte
|
||||||
* Rado Kirov
|
- Lorant Pinter
|
||||||
* Raj Dosanjh
|
- Lucien Greathouse
|
||||||
* Reiner Dolp
|
- Luka Hartwig
|
||||||
* Remo H. Jansen
|
- Lukas Elmer
|
||||||
* @rhysd
|
- M.Yoshimura
|
||||||
* Ricardo N Feliciano
|
- Maarten Sijm
|
||||||
* Richard Karmazín
|
- Magnus Hiie
|
||||||
* Richard Knoll
|
- Magnus Kulke
|
||||||
* Richard Sentino
|
- Manish Bansal
|
||||||
* Robert Coie
|
- Manish Giri
|
||||||
* Rohit Verma
|
- Marcus Noble
|
||||||
* Ron Buckton
|
- Marin Marinov
|
||||||
* Rostislav Galimsky
|
- Marius Schulz
|
||||||
* Rowan Wyborn
|
- Markus Johnsson
|
||||||
* Ryan Cavanaugh
|
- Markus Wolf
|
||||||
* Ryohei Ikegami
|
- Martin
|
||||||
* Sam Bostock
|
- Martin Hiller
|
||||||
* Sam El-Husseini
|
- Martin Johns
|
||||||
* Sarangan Rajamanickam
|
- Martin Probst
|
||||||
* Sean Barag
|
- Martin Vseticka
|
||||||
* Sergey Rubanov
|
- Martyn Janes
|
||||||
* Sergey Shandar
|
- Masahiro Wakame
|
||||||
* Sergii Bezliudnyi
|
- Mateusz Burzyński
|
||||||
* Sharon Rolel
|
- Matt Bierner
|
||||||
* Sheetal Nandi
|
- Matt McCutchen
|
||||||
* Shengping Zhong
|
- Matt Mitchell
|
||||||
* Shyyko Serhiy
|
- Matthew Aynalem
|
||||||
* Simon Hürlimann
|
- Matthew Miller
|
||||||
* Slawomir Sadziak
|
- Mattias Buelens
|
||||||
* Solal Pirelli
|
- Max Heiber
|
||||||
* Soo Jae Hwang
|
- Maxwell Paul Brickner
|
||||||
* Stan Thomas
|
- @meyer
|
||||||
* Stanislav Iliev
|
- Micah Zoltu
|
||||||
* Stanislav Sysoev
|
- @micbou
|
||||||
* Stas Vilchik
|
- Michael
|
||||||
* Stephan Ginthör
|
- Michael Crane
|
||||||
* Steve Lucco
|
- Michael Henderson
|
||||||
* @styfle
|
- Michael Tamm
|
||||||
* Sudheesh Singanamalla
|
- Michael Tang
|
||||||
* Sébastien Arod
|
- Michal Przybys
|
||||||
* @T18970237136
|
- Mike Busyrev
|
||||||
* @t_
|
- Mike Morearty
|
||||||
* Taras Mankovski
|
- Milosz Piechocki
|
||||||
* Tarik Ozket
|
- Mine Starks
|
||||||
* Tetsuharu Ohzeki
|
- Minh Nguyen
|
||||||
* Thomas den Hollander
|
- Mohamed Hegazy
|
||||||
* Thomas Loubiou
|
- Mohsen Azimi
|
||||||
* Tien Hoanhtien
|
- Mukesh Prasad
|
||||||
* Tim Lancina
|
- Myles Megyesi
|
||||||
* Tim Perry
|
- Nathan Day
|
||||||
* Tim Viiding-Spader
|
- Nathan Fenner
|
||||||
* Tingan Ho
|
- Nathan Shively-Sanders
|
||||||
* Todd Thomson
|
- Nathan Yee
|
||||||
* togru
|
- ncoley
|
||||||
* Tomas Grubliauskas
|
- Nicholas Yang
|
||||||
* Torben Fitschen
|
- Nicu Micleușanu
|
||||||
* @TravCav
|
- @nieltg
|
||||||
* TruongSinh Tran-Nguyen
|
- Nima Zahedi
|
||||||
* Tycho Grouwstra
|
- Noah Chen
|
||||||
* Vadi Taslim
|
- Noel Varanda
|
||||||
* Vakhurin Sergey
|
- Noel Yoo
|
||||||
* Vidar Tonaas Fauske
|
- Noj Vek
|
||||||
* Viktor Zozulyak
|
- nrcoley
|
||||||
* Vilic Vane
|
- Nuno Arruda
|
||||||
* Vimal Raghubir
|
- Oleg Mihailik
|
||||||
* Vladimir Kurchatkin
|
- Oleksandr Chekhovskyi
|
||||||
* Vladimir Matveev
|
- Omer Sheikh
|
||||||
* Vyacheslav Pukhanov
|
- Orta Therox
|
||||||
* Wenlu Wang
|
- Orta Therox
|
||||||
* Wesley Wigham
|
- Oskar Grunning
|
||||||
* William Orr
|
- Oskar Segersva¨rd
|
||||||
* Wilson Hobbs
|
- Oussama Ben Brahim
|
||||||
* York Yao
|
- Ozair Patel
|
||||||
* @yortus
|
- Patrick McCartney
|
||||||
* Yuichi Nukiyama
|
- Patrick Zhong
|
||||||
* Yuval Greenfield
|
- Paul Koerbitz
|
||||||
* Zeeshan Ahmed
|
- Paul van Brenk
|
||||||
* Zev Spitz
|
- @pcbro
|
||||||
* Zhengbo Li
|
- Pedro Maltez
|
||||||
* @Zzzen
|
- Pete Bacon Darwin
|
||||||
|
- Peter Burns
|
||||||
|
- Peter Šándor
|
||||||
|
- Philip Pesca
|
||||||
|
- Philippe Voinov
|
||||||
|
- Pi Lanningham
|
||||||
|
- Piero Cangianiello
|
||||||
|
- Pierre-Antoine Mills
|
||||||
|
- @piloopin
|
||||||
|
- Pranav Senthilnathan
|
||||||
|
- Prateek Goel
|
||||||
|
- Prateek Nayak
|
||||||
|
- Prayag Verma
|
||||||
|
- Priyantha Lankapura
|
||||||
|
- @progre
|
||||||
|
- Punya Biswal
|
||||||
|
- r7kamura
|
||||||
|
- Rado Kirov
|
||||||
|
- Raj Dosanjh
|
||||||
|
- rChaser53
|
||||||
|
- Reiner Dolp
|
||||||
|
- Remo H. Jansen
|
||||||
|
- @rflorian
|
||||||
|
- Rhys van der Waerden
|
||||||
|
- @rhysd
|
||||||
|
- Ricardo N Feliciano
|
||||||
|
- Richard Karmazín
|
||||||
|
- Richard Knoll
|
||||||
|
- Roger Spratley
|
||||||
|
- Ron Buckton
|
||||||
|
- Rostislav Galimsky
|
||||||
|
- Rowan Wyborn
|
||||||
|
- rpgeeganage
|
||||||
|
- Ruwan Pradeep Geeganage
|
||||||
|
- Ryan Cavanaugh
|
||||||
|
- Ryan Clarke
|
||||||
|
- Ryohei Ikegami
|
||||||
|
- Salisbury, Tom
|
||||||
|
- Sam Bostock
|
||||||
|
- Sam Drugan
|
||||||
|
- Sam El-Husseini
|
||||||
|
- Sam Lanning
|
||||||
|
- Sangmin Lee
|
||||||
|
- Sanket Mishra
|
||||||
|
- Sarangan Rajamanickam
|
||||||
|
- Sasha Joseph
|
||||||
|
- Sean Barag
|
||||||
|
- Sergey Rubanov
|
||||||
|
- Sergey Shandar
|
||||||
|
- Sergey Tychinin
|
||||||
|
- Sergii Bezliudnyi
|
||||||
|
- Sergio Baidon
|
||||||
|
- Sharon Rolel
|
||||||
|
- Sheetal Nandi
|
||||||
|
- Shengping Zhong
|
||||||
|
- Sheon Han
|
||||||
|
- Shyyko Serhiy
|
||||||
|
- Siddharth Singh
|
||||||
|
- sisisin
|
||||||
|
- Slawomir Sadziak
|
||||||
|
- Solal Pirelli
|
||||||
|
- Soo Jae Hwang
|
||||||
|
- Stan Thomas
|
||||||
|
- Stanislav Iliev
|
||||||
|
- Stanislav Sysoev
|
||||||
|
- Stas Vilchik
|
||||||
|
- Stephan Ginthör
|
||||||
|
- Steve Lucco
|
||||||
|
- @styfle
|
||||||
|
- Sudheesh Singanamalla
|
||||||
|
- Suhas
|
||||||
|
- Suhas Deshpande
|
||||||
|
- superkd37
|
||||||
|
- Sébastien Arod
|
||||||
|
- @T18970237136
|
||||||
|
- @t_
|
||||||
|
- Tan Li Hau
|
||||||
|
- Tapan Prakash
|
||||||
|
- Taras Mankovski
|
||||||
|
- Tarik Ozket
|
||||||
|
- Tetsuharu Ohzeki
|
||||||
|
- The Gitter Badger
|
||||||
|
- Thomas den Hollander
|
||||||
|
- Thorsten Ball
|
||||||
|
- Tien Hoanhtien
|
||||||
|
- Tim Lancina
|
||||||
|
- Tim Perry
|
||||||
|
- Tim Schaub
|
||||||
|
- Tim Suchanek
|
||||||
|
- Tim Viiding-Spader
|
||||||
|
- Tingan Ho
|
||||||
|
- Titian Cernicova-Dragomir
|
||||||
|
- tkondo
|
||||||
|
- Todd Thomson
|
||||||
|
- togru
|
||||||
|
- Tom J
|
||||||
|
- Torben Fitschen
|
||||||
|
- Toxyxer
|
||||||
|
- @TravCav
|
||||||
|
- Troy Tae
|
||||||
|
- TruongSinh Tran-Nguyen
|
||||||
|
- Tycho Grouwstra
|
||||||
|
- uhyo
|
||||||
|
- Vadi Taslim
|
||||||
|
- Vakhurin Sergey
|
||||||
|
- Valera Rozuvan
|
||||||
|
- Vilic Vane
|
||||||
|
- Vimal Raghubir
|
||||||
|
- Vladimir Kurchatkin
|
||||||
|
- Vladimir Matveev
|
||||||
|
- Vyacheslav Pukhanov
|
||||||
|
- Wenlu Wang
|
||||||
|
- Wes Souza
|
||||||
|
- Wesley Wigham
|
||||||
|
- William Orr
|
||||||
|
- Wilson Hobbs
|
||||||
|
- xiaofa
|
||||||
|
- xl1
|
||||||
|
- Yacine Hmito
|
||||||
|
- Yang Cao
|
||||||
|
- York Yao
|
||||||
|
- @yortus
|
||||||
|
- Yoshiki Shibukawa
|
||||||
|
- Yuichi Nukiyama
|
||||||
|
- Yuval Greenfield
|
||||||
|
- Yuya Tanaka
|
||||||
|
- Z
|
||||||
|
- Zeeshan Ahmed
|
||||||
|
- Zev Spitz
|
||||||
|
- Zhengbo Li
|
||||||
|
- Zixiang Li
|
||||||
|
- @Zzzen
|
||||||
|
- 阿卡琳
|
||||||
|
12
node_modules/typescript/CopyrightNotice.txt
generated
vendored
12
node_modules/typescript/CopyrightNotice.txt
generated
vendored
@ -1,14 +1,14 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
110
node_modules/typescript/LICENSE.txt
generated
vendored
110
node_modules/typescript/LICENSE.txt
generated
vendored
@ -1,55 +1,55 @@
|
|||||||
Apache License
|
Apache License
|
||||||
|
|
||||||
Version 2.0, January 2004
|
Version 2.0, January 2004
|
||||||
|
|
||||||
http://www.apache.org/licenses/
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
1. Definitions.
|
1. Definitions.
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
||||||
|
|
||||||
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
||||||
|
|
||||||
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
||||||
|
|
||||||
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
||||||
|
|
||||||
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
END OF TERMS AND CONDITIONS
|
||||||
|
206
node_modules/typescript/README.md
generated
vendored
206
node_modules/typescript/README.md
generated
vendored
@ -1,99 +1,107 @@
|
|||||||
|
|
||||||
# TypeScript
|
# TypeScript
|
||||||
|
|
||||||
[](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[](https://travis-ci.org/microsoft/TypeScript)
|
||||||
[](https://travis-ci.org/Microsoft/TypeScript)
|
[](https://dev.azure.com/typescript/TypeScript/_build/latest?definitionId=4&view=logs)
|
||||||
[](https://dev.azure.com/typescript/TypeScript/_build/latest?definitionId=4&view=logs)
|
[](https://www.npmjs.com/package/typescript)
|
||||||
[](https://www.npmjs.com/package/typescript)
|
[](https://www.npmjs.com/package/typescript)
|
||||||
[](https://www.npmjs.com/package/typescript)
|
|
||||||
|
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescript).
|
||||||
|
|
||||||
|
Find others who are using TypeScript at [our community page](https://www.typescriptlang.org/community/).
|
||||||
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescript).
|
|
||||||
|
## Installing
|
||||||
## Installing
|
|
||||||
|
For the latest stable version:
|
||||||
For the latest stable version:
|
|
||||||
|
```bash
|
||||||
```bash
|
npm install -g typescript
|
||||||
npm install -g typescript
|
```
|
||||||
```
|
|
||||||
|
For our nightly builds:
|
||||||
For our nightly builds:
|
|
||||||
|
```bash
|
||||||
```bash
|
npm install -g typescript@next
|
||||||
npm install -g typescript@next
|
```
|
||||||
```
|
|
||||||
|
## Contribute
|
||||||
## Contribute
|
|
||||||
|
There are many ways to [contribute](https://github.com/microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.
|
||||||
There are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.
|
* [Submit bugs](https://github.com/microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
|
||||||
* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
|
* Review the [source code changes](https://github.com/microsoft/TypeScript/pulls).
|
||||||
* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).
|
* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript).
|
||||||
* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript).
|
* Help each other in the [TypeScript Community Discord](https://discord.gg/typescript).
|
||||||
* Join the [#typescript](https://twitter.com/search?q=%23TypeScript) discussion on Twitter.
|
* Join the [#typescript](https://twitter.com/search?q=%23TypeScript) discussion on Twitter.
|
||||||
* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).
|
* [Contribute bug fixes](https://github.com/microsoft/TypeScript/blob/master/CONTRIBUTING.md).
|
||||||
* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),
|
* Read the language specification ([docx](https://github.com/microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),
|
||||||
[pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).
|
[pdf](https://github.com/microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/microsoft/TypeScript/blob/master/doc/spec.md)).
|
||||||
|
|
||||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see
|
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see
|
||||||
the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
|
the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
|
||||||
with any additional questions or comments.
|
with any additional questions or comments.
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
* [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)
|
* [TypeScript in 5 minutes](https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html)
|
||||||
* [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)
|
* [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)
|
||||||
* [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)
|
* [Language specification](https://github.com/microsoft/TypeScript/blob/master/doc/spec.md)
|
||||||
* [Homepage](https://www.typescriptlang.org/)
|
* [Homepage](https://www.typescriptlang.org/)
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
In order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.
|
In order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.
|
||||||
|
|
||||||
Clone a copy of the repo:
|
Clone a copy of the repo:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/Microsoft/TypeScript.git
|
git clone https://github.com/microsoft/TypeScript.git
|
||||||
```
|
```
|
||||||
|
|
||||||
Change to the TypeScript directory:
|
Change to the TypeScript directory:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd TypeScript
|
cd TypeScript
|
||||||
```
|
```
|
||||||
|
|
||||||
Install [Gulp](https://gulpjs.com/) tools and dev dependencies:
|
Install [Gulp](https://gulpjs.com/) tools and dev dependencies:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install -g gulp
|
npm install -g gulp
|
||||||
npm install
|
npm install
|
||||||
```
|
```
|
||||||
|
|
||||||
Use one of the following to build and test:
|
Use one of the following to build and test:
|
||||||
|
|
||||||
```
|
```
|
||||||
gulp local # Build the compiler into built/local
|
gulp local # Build the compiler into built/local.
|
||||||
gulp clean # Delete the built compiler
|
gulp clean # Delete the built compiler.
|
||||||
gulp LKG # Replace the last known good with the built one.
|
gulp LKG # Replace the last known good with the built one.
|
||||||
# Bootstrapping step to be executed when the built compiler reaches a stable state.
|
# Bootstrapping step to be executed when the built compiler reaches a stable state.
|
||||||
gulp tests # Build the test infrastructure using the built compiler.
|
gulp tests # Build the test infrastructure using the built compiler.
|
||||||
gulp runtests # Run tests using the built compiler and test infrastructure.
|
gulp runtests # Run tests using the built compiler and test infrastructure.
|
||||||
# You can override the host or specify a test for this command.
|
# Some low-value tests are skipped when not on a CI machine - you can use the
|
||||||
# Use --host=<hostName> or --tests=<testPath>.
|
# --skipPercent=0 command to override this behavior and run all tests locally.
|
||||||
gulp baseline-accept # This replaces the baseline test results with the results obtained from gulp runtests.
|
# You can override the specific suite runner used or specify a test for this command.
|
||||||
gulp lint # Runs tslint on the TypeScript source.
|
# Use --tests=<testPath> for a specific test and/or --runner=<runnerName> for a specific suite.
|
||||||
gulp help # List the above commands.
|
# Valid runners include conformance, compiler, fourslash, project, user, and docker
|
||||||
```
|
# The user and docker runners are extended test suite runners - the user runner
|
||||||
|
# works on disk in the tests/cases/user directory, while the docker runner works in containers.
|
||||||
|
# You'll need to have the docker executable in your system path for the docker runner to work.
|
||||||
## Usage
|
gulp runtests-parallel # Like runtests, but split across multiple threads. Uses a number of threads equal to the system
|
||||||
|
# core count by default. Use --workers=<number> to adjust this.
|
||||||
```bash
|
gulp baseline-accept # This replaces the baseline test results with the results obtained from gulp runtests.
|
||||||
node built/local/tsc.js hello.ts
|
gulp lint # Runs eslint on the TypeScript source.
|
||||||
```
|
gulp help # List the above commands.
|
||||||
|
```
|
||||||
|
|
||||||
## Roadmap
|
|
||||||
|
## Usage
|
||||||
For details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).
|
|
||||||
|
```bash
|
||||||
|
node built/local/tsc.js hello.ts
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Roadmap
|
||||||
|
|
||||||
|
For details on our planned features and future direction please refer to our [roadmap](https://github.com/microsoft/TypeScript/wiki/Roadmap).
|
||||||
|
386
node_modules/typescript/ThirdPartyNoticeText.txt
generated
vendored
386
node_modules/typescript/ThirdPartyNoticeText.txt
generated
vendored
File diff suppressed because one or more lines are too long
20
node_modules/typescript/lib/cancellationToken.js
generated
vendored
20
node_modules/typescript/lib/cancellationToken.js
generated
vendored
@ -1,14 +1,14 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
@ -17,13 +17,7 @@ and limitations under the License.
|
|||||||
"use strict";
|
"use strict";
|
||||||
var fs = require("fs");
|
var fs = require("fs");
|
||||||
function pipeExists(name) {
|
function pipeExists(name) {
|
||||||
try {
|
return fs.existsSync(name);
|
||||||
fs.statSync(name);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
function createCancellationToken(args) {
|
function createCancellationToken(args) {
|
||||||
var cancellationPipeName;
|
var cancellationPipeName;
|
||||||
|
468
node_modules/typescript/lib/cs/diagnosticMessages.generated.json
generated
vendored
468
node_modules/typescript/lib/cs/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
470
node_modules/typescript/lib/de/diagnosticMessages.generated.json
generated
vendored
470
node_modules/typescript/lib/de/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
472
node_modules/typescript/lib/es/diagnosticMessages.generated.json
generated
vendored
472
node_modules/typescript/lib/es/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
476
node_modules/typescript/lib/fr/diagnosticMessages.generated.json
generated
vendored
476
node_modules/typescript/lib/fr/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
484
node_modules/typescript/lib/it/diagnosticMessages.generated.json
generated
vendored
484
node_modules/typescript/lib/it/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
502
node_modules/typescript/lib/ja/diagnosticMessages.generated.json
generated
vendored
502
node_modules/typescript/lib/ja/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
472
node_modules/typescript/lib/ko/diagnosticMessages.generated.json
generated
vendored
472
node_modules/typescript/lib/ko/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
22
node_modules/typescript/lib/lib.d.ts
generated
vendored
22
node_modules/typescript/lib/lib.d.ts
generated
vendored
@ -1,24 +1,24 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es5" />
|
/// <reference lib="es5" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
|
1594
node_modules/typescript/lib/lib.dom.d.ts
generated
vendored
1594
node_modules/typescript/lib/lib.dom.d.ts
generated
vendored
File diff suppressed because it is too large
Load Diff
56
node_modules/typescript/lib/lib.dom.iterable.d.ts
generated
vendored
56
node_modules/typescript/lib/lib.dom.iterable.d.ts
generated
vendored
@ -1,21 +1,21 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
@ -29,10 +29,6 @@ interface AudioParam {
|
|||||||
interface AudioParamMap extends ReadonlyMap<string, AudioParam> {
|
interface AudioParamMap extends ReadonlyMap<string, AudioParam> {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AudioTrackList {
|
|
||||||
[Symbol.iterator](): IterableIterator<AudioTrack>;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface BaseAudioContext {
|
interface BaseAudioContext {
|
||||||
createIIRFilter(feedforward: Iterable<number>, feedback: Iterable<number>): IIRFilterNode;
|
createIIRFilter(feedforward: Iterable<number>, feedback: Iterable<number>): IIRFilterNode;
|
||||||
createPeriodicWave(real: Iterable<number>, imag: Iterable<number>, constraints?: PeriodicWaveConstraints): PeriodicWave;
|
createPeriodicWave(real: Iterable<number>, imag: Iterable<number>, constraints?: PeriodicWaveConstraints): PeriodicWave;
|
||||||
@ -245,7 +241,7 @@ interface SpeechRecognitionResultList {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface StyleSheetList {
|
interface StyleSheetList {
|
||||||
[Symbol.iterator](): IterableIterator<StyleSheet>;
|
[Symbol.iterator](): IterableIterator<CSSStyleSheet>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TextTrackCueList {
|
interface TextTrackCueList {
|
||||||
@ -280,10 +276,6 @@ interface VRDisplay {
|
|||||||
requestPresent(layers: Iterable<VRLayer>): Promise<void>;
|
requestPresent(layers: Iterable<VRLayer>): Promise<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface VideoTrackList {
|
|
||||||
[Symbol.iterator](): IterableIterator<VideoTrack>;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface WEBGL_draw_buffers {
|
interface WEBGL_draw_buffers {
|
||||||
drawBuffersWEBGL(buffers: Iterable<GLenum>): void;
|
drawBuffersWEBGL(buffers: Iterable<GLenum>): void;
|
||||||
}
|
}
|
||||||
@ -293,37 +285,37 @@ interface WebAuthentication {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface WebGL2RenderingContextBase {
|
interface WebGL2RenderingContextBase {
|
||||||
|
clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: GLuint): void;
|
||||||
|
clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: GLuint): void;
|
||||||
|
clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLuint>, srcOffset?: GLuint): void;
|
||||||
|
drawBuffers(buffers: Iterable<GLenum>): void;
|
||||||
|
getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
|
||||||
|
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): Iterable<GLuint> | null;
|
||||||
invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;
|
invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;
|
||||||
invalidateSubFramebuffer(target: GLenum, attachments: Iterable<GLenum>, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;
|
invalidateSubFramebuffer(target: GLenum, attachments: Iterable<GLenum>, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;
|
||||||
|
transformFeedbackVaryings(program: WebGLProgram, varyings: Iterable<string>, bufferMode: GLenum): void;
|
||||||
uniform1uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform1uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniform2uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform2uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniform3uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform3uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniform4uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform4uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
|
||||||
uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
|
||||||
uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
|
||||||
uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
|
uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
|
uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
|
uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
vertexAttribI4iv(index: GLuint, values: Iterable<GLint>): void;
|
vertexAttribI4iv(index: GLuint, values: Iterable<GLint>): void;
|
||||||
vertexAttribI4uiv(index: GLuint, values: Iterable<GLuint>): void;
|
vertexAttribI4uiv(index: GLuint, values: Iterable<GLuint>): void;
|
||||||
drawBuffers(buffers: Iterable<GLenum>): void;
|
|
||||||
clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: GLuint): void;
|
|
||||||
clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: GLuint): void;
|
|
||||||
clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLuint>, srcOffset?: GLuint): void;
|
|
||||||
transformFeedbackVaryings(program: WebGLProgram, varyings: Iterable<string>, bufferMode: GLenum): void;
|
|
||||||
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): Iterable<GLuint> | null;
|
|
||||||
getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WebGL2RenderingContextOverloads {
|
interface WebGL2RenderingContextOverloads {
|
||||||
uniform1fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform1fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniform2fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
|
||||||
uniform3fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
|
||||||
uniform4fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
|
||||||
uniform1iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform1iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
|
uniform2fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniform2iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform2iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
|
uniform3fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniform3iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform3iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
|
uniform4fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniform4iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniform4iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
|
||||||
@ -339,12 +331,12 @@ interface WebGLRenderingContextBase {
|
|||||||
|
|
||||||
interface WebGLRenderingContextOverloads {
|
interface WebGLRenderingContextOverloads {
|
||||||
uniform1fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
uniform1fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
||||||
uniform2fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
|
||||||
uniform3fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
|
||||||
uniform4fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
|
||||||
uniform1iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
uniform1iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
||||||
|
uniform2fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
||||||
uniform2iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
uniform2iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
||||||
|
uniform3fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
||||||
uniform3iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
uniform3iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
||||||
|
uniform4fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
|
||||||
uniform4iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
uniform4iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
|
||||||
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
|
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
|
||||||
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
|
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
|
||||||
|
152
node_modules/typescript/lib/lib.es2015.collection.d.ts
generated
vendored
152
node_modules/typescript/lib/lib.es2015.collection.d.ts
generated
vendored
@ -1,89 +1,89 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface Map<K, V> {
|
interface Map<K, V> {
|
||||||
clear(): void;
|
clear(): void;
|
||||||
delete(key: K): boolean;
|
delete(key: K): boolean;
|
||||||
forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void;
|
forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void;
|
||||||
get(key: K): V | undefined;
|
get(key: K): V | undefined;
|
||||||
has(key: K): boolean;
|
has(key: K): boolean;
|
||||||
set(key: K, value: V): this;
|
set(key: K, value: V): this;
|
||||||
readonly size: number;
|
readonly size: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface MapConstructor {
|
interface MapConstructor {
|
||||||
new(): Map<any, any>;
|
new(): Map<any, any>;
|
||||||
new<K, V>(entries?: ReadonlyArray<readonly [K, V]> | null): Map<K, V>;
|
new<K, V>(entries?: readonly (readonly [K, V])[] | null): Map<K, V>;
|
||||||
readonly prototype: Map<any, any>;
|
readonly prototype: Map<any, any>;
|
||||||
}
|
}
|
||||||
declare var Map: MapConstructor;
|
declare var Map: MapConstructor;
|
||||||
|
|
||||||
interface ReadonlyMap<K, V> {
|
interface ReadonlyMap<K, V> {
|
||||||
forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void;
|
forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void;
|
||||||
get(key: K): V | undefined;
|
get(key: K): V | undefined;
|
||||||
has(key: K): boolean;
|
has(key: K): boolean;
|
||||||
readonly size: number;
|
readonly size: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakMap<K extends object, V> {
|
interface WeakMap<K extends object, V> {
|
||||||
delete(key: K): boolean;
|
delete(key: K): boolean;
|
||||||
get(key: K): V | undefined;
|
get(key: K): V | undefined;
|
||||||
has(key: K): boolean;
|
has(key: K): boolean;
|
||||||
set(key: K, value: V): this;
|
set(key: K, value: V): this;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakMapConstructor {
|
interface WeakMapConstructor {
|
||||||
new <K extends object = object, V = any>(entries?: ReadonlyArray<[K, V]> | null): WeakMap<K, V>;
|
new <K extends object = object, V = any>(entries?: readonly [K, V][] | null): WeakMap<K, V>;
|
||||||
readonly prototype: WeakMap<object, any>;
|
readonly prototype: WeakMap<object, any>;
|
||||||
}
|
}
|
||||||
declare var WeakMap: WeakMapConstructor;
|
declare var WeakMap: WeakMapConstructor;
|
||||||
|
|
||||||
interface Set<T> {
|
interface Set<T> {
|
||||||
add(value: T): this;
|
add(value: T): this;
|
||||||
clear(): void;
|
clear(): void;
|
||||||
delete(value: T): boolean;
|
delete(value: T): boolean;
|
||||||
forEach(callbackfn: (value: T, value2: T, set: Set<T>) => void, thisArg?: any): void;
|
forEach(callbackfn: (value: T, value2: T, set: Set<T>) => void, thisArg?: any): void;
|
||||||
has(value: T): boolean;
|
has(value: T): boolean;
|
||||||
readonly size: number;
|
readonly size: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SetConstructor {
|
interface SetConstructor {
|
||||||
new <T = any>(values?: ReadonlyArray<T> | null): Set<T>;
|
new <T = any>(values?: readonly T[] | null): Set<T>;
|
||||||
readonly prototype: Set<any>;
|
readonly prototype: Set<any>;
|
||||||
}
|
}
|
||||||
declare var Set: SetConstructor;
|
declare var Set: SetConstructor;
|
||||||
|
|
||||||
interface ReadonlySet<T> {
|
interface ReadonlySet<T> {
|
||||||
forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void;
|
forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void;
|
||||||
has(value: T): boolean;
|
has(value: T): boolean;
|
||||||
readonly size: number;
|
readonly size: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakSet<T extends object> {
|
interface WeakSet<T extends object> {
|
||||||
add(value: T): this;
|
add(value: T): this;
|
||||||
delete(value: T): boolean;
|
delete(value: T): boolean;
|
||||||
has(value: T): boolean;
|
has(value: T): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakSetConstructor {
|
interface WeakSetConstructor {
|
||||||
new <T extends object = object>(values?: ReadonlyArray<T> | null): WeakSet<T>;
|
new <T extends object = object>(values?: readonly T[] | null): WeakSet<T>;
|
||||||
readonly prototype: WeakSet<object>;
|
readonly prototype: WeakSet<object>;
|
||||||
}
|
}
|
||||||
declare var WeakSet: WeakSetConstructor;
|
declare var WeakSet: WeakSetConstructor;
|
||||||
|
1012
node_modules/typescript/lib/lib.es2015.core.d.ts
generated
vendored
1012
node_modules/typescript/lib/lib.es2015.core.d.ts
generated
vendored
File diff suppressed because it is too large
Load Diff
34
node_modules/typescript/lib/lib.es2015.d.ts
generated
vendored
34
node_modules/typescript/lib/lib.es2015.d.ts
generated
vendored
@ -1,30 +1,30 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es5" />
|
/// <reference lib="es5" />
|
||||||
/// <reference lib="es2015.core" />
|
/// <reference lib="es2015.core" />
|
||||||
/// <reference lib="es2015.collection" />
|
/// <reference lib="es2015.collection" />
|
||||||
/// <reference lib="es2015.generator" />
|
/// <reference lib="es2015.iterable" />
|
||||||
/// <reference lib="es2015.promise" />
|
/// <reference lib="es2015.generator" />
|
||||||
/// <reference lib="es2015.iterable" />
|
/// <reference lib="es2015.promise" />
|
||||||
/// <reference lib="es2015.proxy" />
|
/// <reference lib="es2015.proxy" />
|
||||||
/// <reference lib="es2015.reflect" />
|
/// <reference lib="es2015.reflect" />
|
||||||
/// <reference lib="es2015.symbol" />
|
/// <reference lib="es2015.symbol" />
|
||||||
/// <reference lib="es2015.symbol.wellknown" />
|
/// <reference lib="es2015.symbol.wellknown" />
|
||||||
|
132
node_modules/typescript/lib/lib.es2015.generator.d.ts
generated
vendored
132
node_modules/typescript/lib/lib.es2015.generator.d.ts
generated
vendored
@ -1,79 +1,79 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.iterable" />
|
/// <reference lib="es2015.iterable" />
|
||||||
|
|
||||||
interface Generator<T = unknown, TReturn = any, TNext = unknown> extends Iterator<T, TReturn, TNext> {
|
interface Generator<T = unknown, TReturn = any, TNext = unknown> extends Iterator<T, TReturn, TNext> {
|
||||||
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
||||||
next(...args: [] | [TNext]): IteratorResult<T, TReturn>;
|
next(...args: [] | [TNext]): IteratorResult<T, TReturn>;
|
||||||
return(value: TReturn): IteratorResult<T, TReturn>;
|
return(value: TReturn): IteratorResult<T, TReturn>;
|
||||||
throw(e: any): IteratorResult<T, TReturn>;
|
throw(e: any): IteratorResult<T, TReturn>;
|
||||||
[Symbol.iterator](): Generator<T, TReturn, TNext>;
|
[Symbol.iterator](): Generator<T, TReturn, TNext>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface GeneratorFunction {
|
interface GeneratorFunction {
|
||||||
/**
|
/**
|
||||||
* Creates a new Generator object.
|
* Creates a new Generator object.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
new (...args: any[]): Generator;
|
new (...args: any[]): Generator;
|
||||||
/**
|
/**
|
||||||
* Creates a new Generator object.
|
* Creates a new Generator object.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
(...args: any[]): Generator;
|
(...args: any[]): Generator;
|
||||||
/**
|
/**
|
||||||
* The length of the arguments.
|
* The length of the arguments.
|
||||||
*/
|
*/
|
||||||
readonly length: number;
|
readonly length: number;
|
||||||
/**
|
/**
|
||||||
* Returns the name of the function.
|
* Returns the name of the function.
|
||||||
*/
|
*/
|
||||||
readonly name: string;
|
readonly name: string;
|
||||||
/**
|
/**
|
||||||
* A reference to the prototype.
|
* A reference to the prototype.
|
||||||
*/
|
*/
|
||||||
readonly prototype: Generator;
|
readonly prototype: Generator;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface GeneratorFunctionConstructor {
|
interface GeneratorFunctionConstructor {
|
||||||
/**
|
/**
|
||||||
* Creates a new Generator function.
|
* Creates a new Generator function.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
new (...args: string[]): GeneratorFunction;
|
new (...args: string[]): GeneratorFunction;
|
||||||
/**
|
/**
|
||||||
* Creates a new Generator function.
|
* Creates a new Generator function.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
(...args: string[]): GeneratorFunction;
|
(...args: string[]): GeneratorFunction;
|
||||||
/**
|
/**
|
||||||
* The length of the arguments.
|
* The length of the arguments.
|
||||||
*/
|
*/
|
||||||
readonly length: number;
|
readonly length: number;
|
||||||
/**
|
/**
|
||||||
* Returns the name of the function.
|
* Returns the name of the function.
|
||||||
*/
|
*/
|
||||||
readonly name: string;
|
readonly name: string;
|
||||||
/**
|
/**
|
||||||
* A reference to the prototype.
|
* A reference to the prototype.
|
||||||
*/
|
*/
|
||||||
readonly prototype: GeneratorFunction;
|
readonly prototype: GeneratorFunction;
|
||||||
}
|
}
|
||||||
|
988
node_modules/typescript/lib/lib.es2015.iterable.d.ts
generated
vendored
988
node_modules/typescript/lib/lib.es2015.iterable.d.ts
generated
vendored
@ -1,501 +1,509 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.symbol" />
|
/// <reference lib="es2015.symbol" />
|
||||||
|
|
||||||
interface SymbolConstructor {
|
interface SymbolConstructor {
|
||||||
/**
|
/**
|
||||||
* A method that returns the default iterator for an object. Called by the semantics of the
|
* A method that returns the default iterator for an object. Called by the semantics of the
|
||||||
* for-of statement.
|
* for-of statement.
|
||||||
*/
|
*/
|
||||||
readonly iterator: symbol;
|
readonly iterator: symbol;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IteratorYieldResult<TYield> {
|
interface IteratorYieldResult<TYield> {
|
||||||
done?: false;
|
done?: false;
|
||||||
value: TYield;
|
value: TYield;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IteratorReturnResult<TReturn> {
|
interface IteratorReturnResult<TReturn> {
|
||||||
done: true;
|
done: true;
|
||||||
value: TReturn;
|
value: TReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
type IteratorResult<T, TReturn = any> = IteratorYieldResult<T> | IteratorReturnResult<TReturn>;
|
type IteratorResult<T, TReturn = any> = IteratorYieldResult<T> | IteratorReturnResult<TReturn>;
|
||||||
|
|
||||||
interface Iterator<T, TReturn = any, TNext = undefined> {
|
interface Iterator<T, TReturn = any, TNext = undefined> {
|
||||||
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
||||||
next(...args: [] | [TNext]): IteratorResult<T, TReturn>;
|
next(...args: [] | [TNext]): IteratorResult<T, TReturn>;
|
||||||
return?(value?: TReturn): IteratorResult<T, TReturn>;
|
return?(value?: TReturn): IteratorResult<T, TReturn>;
|
||||||
throw?(e?: any): IteratorResult<T, TReturn>;
|
throw?(e?: any): IteratorResult<T, TReturn>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Iterable<T> {
|
interface Iterable<T> {
|
||||||
[Symbol.iterator](): Iterator<T>;
|
[Symbol.iterator](): Iterator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IterableIterator<T> extends Iterator<T> {
|
interface IterableIterator<T> extends Iterator<T> {
|
||||||
[Symbol.iterator](): IterableIterator<T>;
|
[Symbol.iterator](): IterableIterator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Array<T> {
|
interface Array<T> {
|
||||||
/** Iterator */
|
/** Iterator */
|
||||||
[Symbol.iterator](): IterableIterator<T>;
|
[Symbol.iterator](): IterableIterator<T>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of key, value pairs for every entry in the array
|
* Returns an iterable of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, T]>;
|
entries(): IterableIterator<[number, T]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of keys in the array
|
* Returns an iterable of keys in the array
|
||||||
*/
|
*/
|
||||||
keys(): IterableIterator<number>;
|
keys(): IterableIterator<number>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of values in the array
|
* Returns an iterable of values in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<T>;
|
values(): IterableIterator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ArrayConstructor {
|
interface ArrayConstructor {
|
||||||
/**
|
/**
|
||||||
* Creates an array from an iterable object.
|
* Creates an array from an iterable object.
|
||||||
* @param iterable An iterable object to convert to an array.
|
* @param iterable An iterable object to convert to an array.
|
||||||
*/
|
*/
|
||||||
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array from an iterable object.
|
* Creates an array from an iterable object.
|
||||||
* @param iterable An iterable object to convert to an array.
|
* @param iterable An iterable object to convert to an array.
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ReadonlyArray<T> {
|
interface ReadonlyArray<T> {
|
||||||
/** Iterator of values in the array. */
|
/** Iterator of values in the array. */
|
||||||
[Symbol.iterator](): IterableIterator<T>;
|
[Symbol.iterator](): IterableIterator<T>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of key, value pairs for every entry in the array
|
* Returns an iterable of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, T]>;
|
entries(): IterableIterator<[number, T]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of keys in the array
|
* Returns an iterable of keys in the array
|
||||||
*/
|
*/
|
||||||
keys(): IterableIterator<number>;
|
keys(): IterableIterator<number>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of values in the array
|
* Returns an iterable of values in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<T>;
|
values(): IterableIterator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IArguments {
|
interface IArguments {
|
||||||
/** Iterator */
|
/** Iterator */
|
||||||
[Symbol.iterator](): IterableIterator<any>;
|
[Symbol.iterator](): IterableIterator<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Map<K, V> {
|
interface Map<K, V> {
|
||||||
/** Returns an iterable of entries in the map. */
|
/** Returns an iterable of entries in the map. */
|
||||||
[Symbol.iterator](): IterableIterator<[K, V]>;
|
[Symbol.iterator](): IterableIterator<[K, V]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of key, value pairs for every entry in the map.
|
* Returns an iterable of key, value pairs for every entry in the map.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[K, V]>;
|
entries(): IterableIterator<[K, V]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of keys in the map
|
* Returns an iterable of keys in the map
|
||||||
*/
|
*/
|
||||||
keys(): IterableIterator<K>;
|
keys(): IterableIterator<K>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of values in the map
|
* Returns an iterable of values in the map
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<V>;
|
values(): IterableIterator<V>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ReadonlyMap<K, V> {
|
interface ReadonlyMap<K, V> {
|
||||||
/** Returns an iterable of entries in the map. */
|
/** Returns an iterable of entries in the map. */
|
||||||
[Symbol.iterator](): IterableIterator<[K, V]>;
|
[Symbol.iterator](): IterableIterator<[K, V]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of key, value pairs for every entry in the map.
|
* Returns an iterable of key, value pairs for every entry in the map.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[K, V]>;
|
entries(): IterableIterator<[K, V]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of keys in the map
|
* Returns an iterable of keys in the map
|
||||||
*/
|
*/
|
||||||
keys(): IterableIterator<K>;
|
keys(): IterableIterator<K>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of values in the map
|
* Returns an iterable of values in the map
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<V>;
|
values(): IterableIterator<V>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface MapConstructor {
|
interface MapConstructor {
|
||||||
new <K, V>(iterable: Iterable<readonly [K, V]>): Map<K, V>;
|
new <K, V>(iterable: Iterable<readonly [K, V]>): Map<K, V>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakMap<K extends object, V> { }
|
interface WeakMap<K extends object, V> { }
|
||||||
|
|
||||||
interface WeakMapConstructor {
|
interface WeakMapConstructor {
|
||||||
new <K extends object, V>(iterable: Iterable<[K, V]>): WeakMap<K, V>;
|
new <K extends object, V>(iterable: Iterable<[K, V]>): WeakMap<K, V>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Set<T> {
|
interface Set<T> {
|
||||||
/** Iterates over values in the set. */
|
/** Iterates over values in the set. */
|
||||||
[Symbol.iterator](): IterableIterator<T>;
|
[Symbol.iterator](): IterableIterator<T>;
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of [v,v] pairs for every value `v` in the set.
|
* Returns an iterable of [v,v] pairs for every value `v` in the set.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[T, T]>;
|
entries(): IterableIterator<[T, T]>;
|
||||||
/**
|
/**
|
||||||
* Despite its name, returns an iterable of the values in the set,
|
* Despite its name, returns an iterable of the values in the set,
|
||||||
*/
|
*/
|
||||||
keys(): IterableIterator<T>;
|
keys(): IterableIterator<T>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of values in the set.
|
* Returns an iterable of values in the set.
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<T>;
|
values(): IterableIterator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ReadonlySet<T> {
|
interface ReadonlySet<T> {
|
||||||
/** Iterates over values in the set. */
|
/** Iterates over values in the set. */
|
||||||
[Symbol.iterator](): IterableIterator<T>;
|
[Symbol.iterator](): IterableIterator<T>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of [v,v] pairs for every value `v` in the set.
|
* Returns an iterable of [v,v] pairs for every value `v` in the set.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[T, T]>;
|
entries(): IterableIterator<[T, T]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Despite its name, returns an iterable of the values in the set,
|
* Despite its name, returns an iterable of the values in the set,
|
||||||
*/
|
*/
|
||||||
keys(): IterableIterator<T>;
|
keys(): IterableIterator<T>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an iterable of values in the set.
|
* Returns an iterable of values in the set.
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<T>;
|
values(): IterableIterator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SetConstructor {
|
interface SetConstructor {
|
||||||
new <T>(iterable?: Iterable<T> | null): Set<T>;
|
new <T>(iterable?: Iterable<T> | null): Set<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakSet<T extends object> { }
|
interface WeakSet<T extends object> { }
|
||||||
|
|
||||||
interface WeakSetConstructor {
|
interface WeakSetConstructor {
|
||||||
new <T extends object = object>(iterable: Iterable<T>): WeakSet<T>;
|
new <T extends object = object>(iterable: Iterable<T>): WeakSet<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Promise<T> { }
|
interface Promise<T> { }
|
||||||
|
|
||||||
interface PromiseConstructor {
|
interface PromiseConstructor {
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An iterable of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<TAll>(values: Iterable<TAll | PromiseLike<TAll>>): Promise<TAll[]>;
|
all<T>(values: Iterable<T | PromiseLike<T>>): Promise<T[]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
|
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
|
||||||
* or rejected.
|
* or rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An iterable of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
race<T>(values: Iterable<T | PromiseLike<T>>): Promise<T>;
|
race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
|
||||||
}
|
|
||||||
|
/**
|
||||||
declare namespace Reflect {
|
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
|
||||||
function enumerate(target: object): IterableIterator<any>;
|
* or rejected.
|
||||||
}
|
* @param values An iterable of Promises.
|
||||||
|
* @returns A new Promise.
|
||||||
interface String {
|
*/
|
||||||
/** Iterator */
|
race<T>(values: Iterable<T | PromiseLike<T>>): Promise<T>;
|
||||||
[Symbol.iterator](): IterableIterator<string>;
|
}
|
||||||
}
|
|
||||||
|
declare namespace Reflect {
|
||||||
interface Int8Array {
|
function enumerate(target: object): IterableIterator<any>;
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
}
|
||||||
/**
|
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
interface String {
|
||||||
*/
|
/** Iterator */
|
||||||
entries(): IterableIterator<[number, number]>;
|
[Symbol.iterator](): IterableIterator<string>;
|
||||||
/**
|
}
|
||||||
* Returns an list of keys in the array
|
|
||||||
*/
|
interface Int8Array {
|
||||||
keys(): IterableIterator<number>;
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
/**
|
/**
|
||||||
* Returns an list of values in the array
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<number>;
|
entries(): IterableIterator<[number, number]>;
|
||||||
}
|
/**
|
||||||
|
* Returns an list of keys in the array
|
||||||
interface Int8ArrayConstructor {
|
*/
|
||||||
new (elements: Iterable<number>): Int8Array;
|
keys(): IterableIterator<number>;
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Int8ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int8Array;
|
new (elements: Iterable<number>): Int8Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Uint8Array {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int8Array;
|
||||||
/**
|
}
|
||||||
* Returns an list of keys in the array
|
|
||||||
*/
|
interface Uint8Array {
|
||||||
keys(): IterableIterator<number>;
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
/**
|
/**
|
||||||
* Returns an list of values in the array
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<number>;
|
entries(): IterableIterator<[number, number]>;
|
||||||
}
|
/**
|
||||||
|
* Returns an list of keys in the array
|
||||||
interface Uint8ArrayConstructor {
|
*/
|
||||||
new (elements: Iterable<number>): Uint8Array;
|
keys(): IterableIterator<number>;
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Uint8ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8Array;
|
new (elements: Iterable<number>): Uint8Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Uint8ClampedArray {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8Array;
|
||||||
|
}
|
||||||
/**
|
|
||||||
* Returns an list of keys in the array
|
interface Uint8ClampedArray {
|
||||||
*/
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
keys(): IterableIterator<number>;
|
/**
|
||||||
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
/**
|
*/
|
||||||
* Returns an list of values in the array
|
entries(): IterableIterator<[number, number]>;
|
||||||
*/
|
|
||||||
values(): IterableIterator<number>;
|
/**
|
||||||
}
|
* Returns an list of keys in the array
|
||||||
|
*/
|
||||||
interface Uint8ClampedArrayConstructor {
|
keys(): IterableIterator<number>;
|
||||||
new (elements: Iterable<number>): Uint8ClampedArray;
|
|
||||||
|
/**
|
||||||
|
* Returns an list of values in the array
|
||||||
/**
|
*/
|
||||||
* Creates an array from an array-like or iterable object.
|
values(): IterableIterator<number>;
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
}
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
interface Uint8ClampedArrayConstructor {
|
||||||
*/
|
new (elements: Iterable<number>): Uint8ClampedArray;
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8ClampedArray;
|
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Int16Array {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8ClampedArray;
|
||||||
|
}
|
||||||
/**
|
|
||||||
* Returns an list of keys in the array
|
interface Int16Array {
|
||||||
*/
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
keys(): IterableIterator<number>;
|
/**
|
||||||
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
/**
|
*/
|
||||||
* Returns an list of values in the array
|
entries(): IterableIterator<[number, number]>;
|
||||||
*/
|
|
||||||
values(): IterableIterator<number>;
|
/**
|
||||||
}
|
* Returns an list of keys in the array
|
||||||
|
*/
|
||||||
interface Int16ArrayConstructor {
|
keys(): IterableIterator<number>;
|
||||||
new (elements: Iterable<number>): Int16Array;
|
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Int16ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int16Array;
|
new (elements: Iterable<number>): Int16Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Uint16Array {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int16Array;
|
||||||
/**
|
}
|
||||||
* Returns an list of keys in the array
|
|
||||||
*/
|
interface Uint16Array {
|
||||||
keys(): IterableIterator<number>;
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
/**
|
/**
|
||||||
* Returns an list of values in the array
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<number>;
|
entries(): IterableIterator<[number, number]>;
|
||||||
}
|
/**
|
||||||
|
* Returns an list of keys in the array
|
||||||
interface Uint16ArrayConstructor {
|
*/
|
||||||
new (elements: Iterable<number>): Uint16Array;
|
keys(): IterableIterator<number>;
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Uint16ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint16Array;
|
new (elements: Iterable<number>): Uint16Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Int32Array {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint16Array;
|
||||||
/**
|
}
|
||||||
* Returns an list of keys in the array
|
|
||||||
*/
|
interface Int32Array {
|
||||||
keys(): IterableIterator<number>;
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
/**
|
/**
|
||||||
* Returns an list of values in the array
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<number>;
|
entries(): IterableIterator<[number, number]>;
|
||||||
}
|
/**
|
||||||
|
* Returns an list of keys in the array
|
||||||
interface Int32ArrayConstructor {
|
*/
|
||||||
new (elements: Iterable<number>): Int32Array;
|
keys(): IterableIterator<number>;
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Int32ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int32Array;
|
new (elements: Iterable<number>): Int32Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Uint32Array {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int32Array;
|
||||||
/**
|
}
|
||||||
* Returns an list of keys in the array
|
|
||||||
*/
|
interface Uint32Array {
|
||||||
keys(): IterableIterator<number>;
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
/**
|
/**
|
||||||
* Returns an list of values in the array
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<number>;
|
entries(): IterableIterator<[number, number]>;
|
||||||
}
|
/**
|
||||||
|
* Returns an list of keys in the array
|
||||||
interface Uint32ArrayConstructor {
|
*/
|
||||||
new (elements: Iterable<number>): Uint32Array;
|
keys(): IterableIterator<number>;
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Uint32ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint32Array;
|
new (elements: Iterable<number>): Uint32Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Float32Array {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint32Array;
|
||||||
/**
|
}
|
||||||
* Returns an list of keys in the array
|
|
||||||
*/
|
interface Float32Array {
|
||||||
keys(): IterableIterator<number>;
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
/**
|
/**
|
||||||
* Returns an list of values in the array
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<number>;
|
entries(): IterableIterator<[number, number]>;
|
||||||
}
|
/**
|
||||||
|
* Returns an list of keys in the array
|
||||||
interface Float32ArrayConstructor {
|
*/
|
||||||
new (elements: Iterable<number>): Float32Array;
|
keys(): IterableIterator<number>;
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Float32ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float32Array;
|
new (elements: Iterable<number>): Float32Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
interface Float64Array {
|
* Creates an array from an array-like or iterable object.
|
||||||
[Symbol.iterator](): IterableIterator<number>;
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
/**
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
* Returns an array of key, value pairs for every entry in the array
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
*/
|
*/
|
||||||
entries(): IterableIterator<[number, number]>;
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float32Array;
|
||||||
/**
|
}
|
||||||
* Returns an list of keys in the array
|
|
||||||
*/
|
interface Float64Array {
|
||||||
keys(): IterableIterator<number>;
|
[Symbol.iterator](): IterableIterator<number>;
|
||||||
/**
|
/**
|
||||||
* Returns an list of values in the array
|
* Returns an array of key, value pairs for every entry in the array
|
||||||
*/
|
*/
|
||||||
values(): IterableIterator<number>;
|
entries(): IterableIterator<[number, number]>;
|
||||||
}
|
/**
|
||||||
|
* Returns an list of keys in the array
|
||||||
interface Float64ArrayConstructor {
|
*/
|
||||||
new (elements: Iterable<number>): Float64Array;
|
keys(): IterableIterator<number>;
|
||||||
|
/**
|
||||||
/**
|
* Returns an list of values in the array
|
||||||
* Creates an array from an array-like or iterable object.
|
*/
|
||||||
* @param arrayLike An array-like or iterable object to convert to an array.
|
values(): IterableIterator<number>;
|
||||||
* @param mapfn A mapping function to call on every element of the array.
|
}
|
||||||
* @param thisArg Value of 'this' used to invoke the mapfn.
|
|
||||||
*/
|
interface Float64ArrayConstructor {
|
||||||
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float64Array;
|
new (elements: Iterable<number>): Float64Array;
|
||||||
}
|
|
||||||
|
/**
|
||||||
|
* Creates an array from an array-like or iterable object.
|
||||||
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
|
*/
|
||||||
|
from(arrayLike: Iterable<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float64Array;
|
||||||
|
}
|
||||||
|
276
node_modules/typescript/lib/lib.es2015.promise.d.ts
generated
vendored
276
node_modules/typescript/lib/lib.es2015.promise.d.ts
generated
vendored
@ -1,152 +1,150 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface PromiseConstructor {
|
interface PromiseConstructor {
|
||||||
/**
|
/**
|
||||||
* A reference to the prototype.
|
* A reference to the prototype.
|
||||||
*/
|
*/
|
||||||
readonly prototype: Promise<any>;
|
readonly prototype: Promise<any>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new Promise.
|
* Creates a new Promise.
|
||||||
* @param executor A callback used to initialize the promise. This callback is passed two arguments:
|
* @param executor A callback used to initialize the promise. This callback is passed two arguments:
|
||||||
* a resolve callback used to resolve the promise with a value or the result of another promise,
|
* a resolve callback used to resolve the promise with a value or the result of another promise,
|
||||||
* and a reject callback used to reject the promise with a provided reason or error.
|
* and a reject callback used to reject the promise with a provided reason or error.
|
||||||
*/
|
*/
|
||||||
new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void): Promise<T>;
|
new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void): Promise<T>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]>;
|
all<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9]>;
|
all<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3, T4, T5, T6, T7, T8>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8]>;
|
all<T1, T2, T3, T4, T5, T6, T7, T8>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3, T4, T5, T6, T7>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<[T1, T2, T3, T4, T5, T6, T7]>;
|
all<T1, T2, T3, T4, T5, T6, T7>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<[T1, T2, T3, T4, T5, T6, T7]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3, T4, T5, T6>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<[T1, T2, T3, T4, T5, T6]>;
|
all<T1, T2, T3, T4, T5, T6>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<[T1, T2, T3, T4, T5, T6]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3, T4, T5>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>]): Promise<[T1, T2, T3, T4, T5]>;
|
all<T1, T2, T3, T4, T5>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>]): Promise<[T1, T2, T3, T4, T5]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3, T4>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>]): Promise<[T1, T2, T3, T4]>;
|
all<T1, T2, T3, T4>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>]): Promise<[T1, T2, T3, T4]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2, T3>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<[T1, T2, T3]>;
|
all<T1, T2, T3>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<[T1, T2, T3]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T1, T2>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;
|
all<T1, T2>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
* Creates a Promise that is resolved with an array of results when all of the provided Promises
|
||||||
* resolve, or rejected when any Promise is rejected.
|
* resolve, or rejected when any Promise is rejected.
|
||||||
* @param values An array of Promises.
|
* @param values An array of Promises.
|
||||||
* @returns A new Promise.
|
* @returns A new Promise.
|
||||||
*/
|
*/
|
||||||
all<T>(values: (T | PromiseLike<T>)[]): Promise<T[]>;
|
all<T>(values: readonly (T | PromiseLike<T>)[]): Promise<T[]>;
|
||||||
|
|
||||||
/**
|
// see: lib.es2015.iterable.d.ts
|
||||||
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
|
// all<T>(values: Iterable<T | PromiseLike<T>>): Promise<T[]>;
|
||||||
* or rejected.
|
|
||||||
* @param values An array of Promises.
|
/**
|
||||||
* @returns A new Promise.
|
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
|
||||||
*/
|
* or rejected.
|
||||||
race<T>(values: T[]): Promise<T extends PromiseLike<infer U> ? U : T>;
|
* @param values An array of Promises.
|
||||||
|
* @returns A new Promise.
|
||||||
/**
|
*/
|
||||||
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
|
race<T>(values: readonly T[]): Promise<T extends PromiseLike<infer U> ? U : T>;
|
||||||
* or rejected.
|
|
||||||
* @param values An iterable of Promises.
|
// see: lib.es2015.iterable.d.ts
|
||||||
* @returns A new Promise.
|
// race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
|
||||||
*/
|
|
||||||
race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
|
/**
|
||||||
|
* Creates a new rejected promise for the provided reason.
|
||||||
/**
|
* @param reason The reason the promise was rejected.
|
||||||
* Creates a new rejected promise for the provided reason.
|
* @returns A new rejected Promise.
|
||||||
* @param reason The reason the promise was rejected.
|
*/
|
||||||
* @returns A new rejected Promise.
|
reject<T = never>(reason?: any): Promise<T>;
|
||||||
*/
|
|
||||||
reject<T = never>(reason?: any): Promise<T>;
|
/**
|
||||||
|
* Creates a new resolved promise for the provided value.
|
||||||
/**
|
* @param value A promise.
|
||||||
* Creates a new resolved promise for the provided value.
|
* @returns A promise whose internal state matches the provided promise.
|
||||||
* @param value A promise.
|
*/
|
||||||
* @returns A promise whose internal state matches the provided promise.
|
resolve<T>(value: T | PromiseLike<T>): Promise<T>;
|
||||||
*/
|
|
||||||
resolve<T>(value: T | PromiseLike<T>): Promise<T>;
|
/**
|
||||||
|
* Creates a new resolved promise .
|
||||||
/**
|
* @returns A resolved promise.
|
||||||
* Creates a new resolved promise .
|
*/
|
||||||
* @returns A resolved promise.
|
resolve(): Promise<void>;
|
||||||
*/
|
}
|
||||||
resolve(): Promise<void>;
|
|
||||||
}
|
declare var Promise: PromiseConstructor;
|
||||||
|
|
||||||
declare var Promise: PromiseConstructor;
|
|
||||||
|
58
node_modules/typescript/lib/lib.es2015.proxy.d.ts
generated
vendored
58
node_modules/typescript/lib/lib.es2015.proxy.d.ts
generated
vendored
@ -1,42 +1,42 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface ProxyHandler<T extends object> {
|
interface ProxyHandler<T extends object> {
|
||||||
getPrototypeOf? (target: T): object | null;
|
getPrototypeOf? (target: T): object | null;
|
||||||
setPrototypeOf? (target: T, v: any): boolean;
|
setPrototypeOf? (target: T, v: any): boolean;
|
||||||
isExtensible? (target: T): boolean;
|
isExtensible? (target: T): boolean;
|
||||||
preventExtensions? (target: T): boolean;
|
preventExtensions? (target: T): boolean;
|
||||||
getOwnPropertyDescriptor? (target: T, p: PropertyKey): PropertyDescriptor | undefined;
|
getOwnPropertyDescriptor? (target: T, p: PropertyKey): PropertyDescriptor | undefined;
|
||||||
has? (target: T, p: PropertyKey): boolean;
|
has? (target: T, p: PropertyKey): boolean;
|
||||||
get? (target: T, p: PropertyKey, receiver: any): any;
|
get? (target: T, p: PropertyKey, receiver: any): any;
|
||||||
set? (target: T, p: PropertyKey, value: any, receiver: any): boolean;
|
set? (target: T, p: PropertyKey, value: any, receiver: any): boolean;
|
||||||
deleteProperty? (target: T, p: PropertyKey): boolean;
|
deleteProperty? (target: T, p: PropertyKey): boolean;
|
||||||
defineProperty? (target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;
|
defineProperty? (target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;
|
||||||
enumerate? (target: T): PropertyKey[];
|
enumerate? (target: T): PropertyKey[];
|
||||||
ownKeys? (target: T): PropertyKey[];
|
ownKeys? (target: T): PropertyKey[];
|
||||||
apply? (target: T, thisArg: any, argArray?: any): any;
|
apply? (target: T, thisArg: any, argArray?: any): any;
|
||||||
construct? (target: T, argArray: any, newTarget?: any): object;
|
construct? (target: T, argArray: any, newTarget?: any): object;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ProxyConstructor {
|
interface ProxyConstructor {
|
||||||
revocable<T extends object>(target: T, handler: ProxyHandler<T>): { proxy: T; revoke: () => void; };
|
revocable<T extends object>(target: T, handler: ProxyHandler<T>): { proxy: T; revoke: () => void; };
|
||||||
new <T extends object>(target: T, handler: ProxyHandler<T>): T;
|
new <T extends object>(target: T, handler: ProxyHandler<T>): T;
|
||||||
}
|
}
|
||||||
declare var Proxy: ProxyConstructor;
|
declare var Proxy: ProxyConstructor;
|
||||||
|
44
node_modules/typescript/lib/lib.es2015.reflect.d.ts
generated
vendored
44
node_modules/typescript/lib/lib.es2015.reflect.d.ts
generated
vendored
@ -1,35 +1,35 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
declare namespace Reflect {
|
declare namespace Reflect {
|
||||||
function apply(target: Function, thisArgument: any, argumentsList: ArrayLike<any>): any;
|
function apply(target: Function, thisArgument: any, argumentsList: ArrayLike<any>): any;
|
||||||
function construct(target: Function, argumentsList: ArrayLike<any>, newTarget?: any): any;
|
function construct(target: Function, argumentsList: ArrayLike<any>, newTarget?: any): any;
|
||||||
function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean;
|
function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean;
|
||||||
function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
|
function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
|
||||||
function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
|
function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
|
||||||
function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | undefined;
|
function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | undefined;
|
||||||
function getPrototypeOf(target: object): object;
|
function getPrototypeOf(target: object): object;
|
||||||
function has(target: object, propertyKey: PropertyKey): boolean;
|
function has(target: object, propertyKey: PropertyKey): boolean;
|
||||||
function isExtensible(target: object): boolean;
|
function isExtensible(target: object): boolean;
|
||||||
function ownKeys(target: object): PropertyKey[];
|
function ownKeys(target: object): PropertyKey[];
|
||||||
function preventExtensions(target: object): boolean;
|
function preventExtensions(target: object): boolean;
|
||||||
function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
|
function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
|
||||||
function setPrototypeOf(target: object, proto: any): boolean;
|
function setPrototypeOf(target: object, proto: any): boolean;
|
||||||
}
|
}
|
||||||
|
68
node_modules/typescript/lib/lib.es2015.symbol.d.ts
generated
vendored
68
node_modules/typescript/lib/lib.es2015.symbol.d.ts
generated
vendored
@ -1,48 +1,48 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface SymbolConstructor {
|
interface SymbolConstructor {
|
||||||
/**
|
/**
|
||||||
* A reference to the prototype.
|
* A reference to the prototype.
|
||||||
*/
|
*/
|
||||||
readonly prototype: Symbol;
|
readonly prototype: Symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a new unique Symbol value.
|
* Returns a new unique Symbol value.
|
||||||
* @param description Description of the new Symbol object.
|
* @param description Description of the new Symbol object.
|
||||||
*/
|
*/
|
||||||
(description?: string | number): symbol;
|
(description?: string | number): symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a Symbol object from the global symbol registry matching the given key if found.
|
* Returns a Symbol object from the global symbol registry matching the given key if found.
|
||||||
* Otherwise, returns a new symbol with this key.
|
* Otherwise, returns a new symbol with this key.
|
||||||
* @param key key to search for.
|
* @param key key to search for.
|
||||||
*/
|
*/
|
||||||
for(key: string): symbol;
|
for(key: string): symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a key from the global symbol registry matching the given Symbol if found.
|
* Returns a key from the global symbol registry matching the given Symbol if found.
|
||||||
* Otherwise, returns a undefined.
|
* Otherwise, returns a undefined.
|
||||||
* @param sym Symbol to find the key for.
|
* @param sym Symbol to find the key for.
|
||||||
*/
|
*/
|
||||||
keyFor(sym: symbol): string | undefined;
|
keyFor(sym: symbol): string | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var Symbol: SymbolConstructor;
|
declare var Symbol: SymbolConstructor;
|
611
node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
generated
vendored
611
node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
generated
vendored
@ -1,318 +1,319 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.symbol" />
|
/// <reference lib="es2015.symbol" />
|
||||||
|
|
||||||
interface SymbolConstructor {
|
interface SymbolConstructor {
|
||||||
/**
|
/**
|
||||||
* A method that determines if a constructor object recognizes an object as one of the
|
* A method that determines if a constructor object recognizes an object as one of the
|
||||||
* constructor’s instances. Called by the semantics of the instanceof operator.
|
* constructor’s instances. Called by the semantics of the instanceof operator.
|
||||||
*/
|
*/
|
||||||
readonly hasInstance: symbol;
|
readonly hasInstance: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A Boolean value that if true indicates that an object should flatten to its array elements
|
* A Boolean value that if true indicates that an object should flatten to its array elements
|
||||||
* by Array.prototype.concat.
|
* by Array.prototype.concat.
|
||||||
*/
|
*/
|
||||||
readonly isConcatSpreadable: symbol;
|
readonly isConcatSpreadable: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A regular expression method that matches the regular expression against a string. Called
|
* A regular expression method that matches the regular expression against a string. Called
|
||||||
* by the String.prototype.match method.
|
* by the String.prototype.match method.
|
||||||
*/
|
*/
|
||||||
readonly match: symbol;
|
readonly match: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A regular expression method that replaces matched substrings of a string. Called by the
|
* A regular expression method that replaces matched substrings of a string. Called by the
|
||||||
* String.prototype.replace method.
|
* String.prototype.replace method.
|
||||||
*/
|
*/
|
||||||
readonly replace: symbol;
|
readonly replace: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A regular expression method that returns the index within a string that matches the
|
* A regular expression method that returns the index within a string that matches the
|
||||||
* regular expression. Called by the String.prototype.search method.
|
* regular expression. Called by the String.prototype.search method.
|
||||||
*/
|
*/
|
||||||
readonly search: symbol;
|
readonly search: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A function valued property that is the constructor function that is used to create
|
* A function valued property that is the constructor function that is used to create
|
||||||
* derived objects.
|
* derived objects.
|
||||||
*/
|
*/
|
||||||
readonly species: symbol;
|
readonly species: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A regular expression method that splits a string at the indices that match the regular
|
* A regular expression method that splits a string at the indices that match the regular
|
||||||
* expression. Called by the String.prototype.split method.
|
* expression. Called by the String.prototype.split method.
|
||||||
*/
|
*/
|
||||||
readonly split: symbol;
|
readonly split: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A method that converts an object to a corresponding primitive value.
|
* A method that converts an object to a corresponding primitive value.
|
||||||
* Called by the ToPrimitive abstract operation.
|
* Called by the ToPrimitive abstract operation.
|
||||||
*/
|
*/
|
||||||
readonly toPrimitive: symbol;
|
readonly toPrimitive: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A String value that is used in the creation of the default string description of an object.
|
* A String value that is used in the creation of the default string description of an object.
|
||||||
* Called by the built-in method Object.prototype.toString.
|
* Called by the built-in method Object.prototype.toString.
|
||||||
*/
|
*/
|
||||||
readonly toStringTag: symbol;
|
readonly toStringTag: symbol;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An Object whose own property names are property names that are excluded from the 'with'
|
* An Object whose own property names are property names that are excluded from the 'with'
|
||||||
* environment bindings of the associated objects.
|
* environment bindings of the associated objects.
|
||||||
*/
|
*/
|
||||||
readonly unscopables: symbol;
|
readonly unscopables: symbol;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Symbol {
|
interface Symbol {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Array<T> {
|
interface Array<T> {
|
||||||
/**
|
/**
|
||||||
* Returns an object whose properties have the value 'true'
|
* Returns an object whose properties have the value 'true'
|
||||||
* when they will be absent when used in a 'with' statement.
|
* when they will be absent when used in a 'with' statement.
|
||||||
*/
|
*/
|
||||||
[Symbol.unscopables](): {
|
[Symbol.unscopables](): {
|
||||||
copyWithin: boolean;
|
copyWithin: boolean;
|
||||||
entries: boolean;
|
entries: boolean;
|
||||||
fill: boolean;
|
fill: boolean;
|
||||||
find: boolean;
|
find: boolean;
|
||||||
findIndex: boolean;
|
findIndex: boolean;
|
||||||
keys: boolean;
|
keys: boolean;
|
||||||
values: boolean;
|
values: boolean;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Date {
|
interface Date {
|
||||||
/**
|
/**
|
||||||
* Converts a Date object to a string.
|
* Converts a Date object to a string.
|
||||||
*/
|
*/
|
||||||
[Symbol.toPrimitive](hint: "default"): string;
|
[Symbol.toPrimitive](hint: "default"): string;
|
||||||
/**
|
/**
|
||||||
* Converts a Date object to a string.
|
* Converts a Date object to a string.
|
||||||
*/
|
*/
|
||||||
[Symbol.toPrimitive](hint: "string"): string;
|
[Symbol.toPrimitive](hint: "string"): string;
|
||||||
/**
|
/**
|
||||||
* Converts a Date object to a number.
|
* Converts a Date object to a number.
|
||||||
*/
|
*/
|
||||||
[Symbol.toPrimitive](hint: "number"): number;
|
[Symbol.toPrimitive](hint: "number"): number;
|
||||||
/**
|
/**
|
||||||
* Converts a Date object to a string or number.
|
* Converts a Date object to a string or number.
|
||||||
*
|
*
|
||||||
* @param hint The strings "number", "string", or "default" to specify what primitive to return.
|
* @param hint The strings "number", "string", or "default" to specify what primitive to return.
|
||||||
*
|
*
|
||||||
* @throws {TypeError} If 'hint' was given something other than "number", "string", or "default".
|
* @throws {TypeError} If 'hint' was given something other than "number", "string", or "default".
|
||||||
* @returns A number if 'hint' was "number", a string if 'hint' was "string" or "default".
|
* @returns A number if 'hint' was "number", a string if 'hint' was "string" or "default".
|
||||||
*/
|
*/
|
||||||
[Symbol.toPrimitive](hint: string): string | number;
|
[Symbol.toPrimitive](hint: string): string | number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Map<K, V> {
|
interface Map<K, V> {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakMap<K extends object, V> {
|
interface WeakMap<K extends object, V> {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Set<T> {
|
interface Set<T> {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WeakSet<T extends object> {
|
interface WeakSet<T extends object> {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface JSON {
|
interface JSON {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Function {
|
interface Function {
|
||||||
/**
|
/**
|
||||||
* Determines whether the given value inherits from this function if this function was used
|
* Determines whether the given value inherits from this function if this function was used
|
||||||
* as a constructor function.
|
* as a constructor function.
|
||||||
*
|
*
|
||||||
* A constructor function can control which objects are recognized as its instances by
|
* A constructor function can control which objects are recognized as its instances by
|
||||||
* 'instanceof' by overriding this method.
|
* 'instanceof' by overriding this method.
|
||||||
*/
|
*/
|
||||||
[Symbol.hasInstance](value: any): boolean;
|
[Symbol.hasInstance](value: any): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface GeneratorFunction {
|
interface GeneratorFunction {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Math {
|
interface Math {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Promise<T> {
|
interface Promise<T> {
|
||||||
readonly [Symbol.toStringTag]: string;
|
readonly [Symbol.toStringTag]: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PromiseConstructor {
|
interface PromiseConstructor {
|
||||||
readonly [Symbol.species]: PromiseConstructor;
|
readonly [Symbol.species]: PromiseConstructor;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RegExp {
|
interface RegExp {
|
||||||
/**
|
/**
|
||||||
* Matches a string with this regular expression, and returns an array containing the results of
|
* Matches a string with this regular expression, and returns an array containing the results of
|
||||||
* that search.
|
* that search.
|
||||||
* @param string A string to search within.
|
* @param string A string to search within.
|
||||||
*/
|
*/
|
||||||
[Symbol.match](string: string): RegExpMatchArray | null;
|
[Symbol.match](string: string): RegExpMatchArray | null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replaces text in a string, using this regular expression.
|
* Replaces text in a string, using this regular expression.
|
||||||
* @param string A String object or string literal whose contents matching against
|
* @param string A String object or string literal whose contents matching against
|
||||||
* this regular expression will be replaced
|
* this regular expression will be replaced
|
||||||
* @param replaceValue A String object or string literal containing the text to replace for every
|
* @param replaceValue A String object or string literal containing the text to replace for every
|
||||||
* successful match of this regular expression.
|
* successful match of this regular expression.
|
||||||
*/
|
*/
|
||||||
[Symbol.replace](string: string, replaceValue: string): string;
|
[Symbol.replace](string: string, replaceValue: string): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replaces text in a string, using this regular expression.
|
* Replaces text in a string, using this regular expression.
|
||||||
* @param string A String object or string literal whose contents matching against
|
* @param string A String object or string literal whose contents matching against
|
||||||
* this regular expression will be replaced
|
* this regular expression will be replaced
|
||||||
* @param replacer A function that returns the replacement text.
|
* @param replacer A function that returns the replacement text.
|
||||||
*/
|
*/
|
||||||
[Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
[Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Finds the position beginning first substring match in a regular expression search
|
* Finds the position beginning first substring match in a regular expression search
|
||||||
* using this regular expression.
|
* using this regular expression.
|
||||||
*
|
*
|
||||||
* @param string The string to search within.
|
* @param string The string to search within.
|
||||||
*/
|
*/
|
||||||
[Symbol.search](string: string): number;
|
[Symbol.search](string: string): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array of substrings that were delimited by strings in the original input that
|
* Returns an array of substrings that were delimited by strings in the original input that
|
||||||
* match against this regular expression.
|
* match against this regular expression.
|
||||||
*
|
*
|
||||||
* If the regular expression contains capturing parentheses, then each time this
|
* If the regular expression contains capturing parentheses, then each time this
|
||||||
* regular expression matches, the results (including any undefined results) of the
|
* regular expression matches, the results (including any undefined results) of the
|
||||||
* capturing parentheses are spliced.
|
* capturing parentheses are spliced.
|
||||||
*
|
*
|
||||||
* @param string string value to split
|
* @param string string value to split
|
||||||
* @param limit if not undefined, the output array is truncated so that it contains no more
|
* @param limit if not undefined, the output array is truncated so that it contains no more
|
||||||
* than 'limit' elements.
|
* than 'limit' elements.
|
||||||
*/
|
*/
|
||||||
[Symbol.split](string: string, limit?: number): string[];
|
[Symbol.split](string: string, limit?: number): string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RegExpConstructor {
|
interface RegExpConstructor {
|
||||||
readonly [Symbol.species]: RegExpConstructor;
|
readonly [Symbol.species]: RegExpConstructor;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface String {
|
interface String {
|
||||||
/**
|
/**
|
||||||
* Matches a string an object that supports being matched against, and returns an array containing the results of that search.
|
* Matches a string or an object that supports being matched against, and returns an array
|
||||||
* @param matcher An object that supports being matched against.
|
* containing the results of that search, or null if no matches are found.
|
||||||
*/
|
* @param matcher An object that supports being matched against.
|
||||||
match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | null;
|
*/
|
||||||
|
match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | null;
|
||||||
/**
|
|
||||||
* Replaces text in a string, using an object that supports replacement within a string.
|
/**
|
||||||
* @param searchValue A object can search for and replace matches within a string.
|
* Replaces text in a string, using an object that supports replacement within a string.
|
||||||
* @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.
|
* @param searchValue A object can search for and replace matches within a string.
|
||||||
*/
|
* @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.
|
||||||
replace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValue: string): string;
|
*/
|
||||||
|
replace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValue: string): string;
|
||||||
/**
|
|
||||||
* Replaces text in a string, using an object that supports replacement within a string.
|
/**
|
||||||
* @param searchValue A object can search for and replace matches within a string.
|
* Replaces text in a string, using an object that supports replacement within a string.
|
||||||
* @param replacer A function that returns the replacement text.
|
* @param searchValue A object can search for and replace matches within a string.
|
||||||
*/
|
* @param replacer A function that returns the replacement text.
|
||||||
replace(searchValue: { [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string; }, replacer: (substring: string, ...args: any[]) => string): string;
|
*/
|
||||||
|
replace(searchValue: { [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string; }, replacer: (substring: string, ...args: any[]) => string): string;
|
||||||
/**
|
|
||||||
* Finds the first substring match in a regular expression search.
|
/**
|
||||||
* @param searcher An object which supports searching within a string.
|
* Finds the first substring match in a regular expression search.
|
||||||
*/
|
* @param searcher An object which supports searching within a string.
|
||||||
search(searcher: { [Symbol.search](string: string): number; }): number;
|
*/
|
||||||
|
search(searcher: { [Symbol.search](string: string): number; }): number;
|
||||||
/**
|
|
||||||
* Split a string into substrings using the specified separator and return them as an array.
|
/**
|
||||||
* @param splitter An object that can split a string.
|
* Split a string into substrings using the specified separator and return them as an array.
|
||||||
* @param limit A value used to limit the number of elements returned in the array.
|
* @param splitter An object that can split a string.
|
||||||
*/
|
* @param limit A value used to limit the number of elements returned in the array.
|
||||||
split(splitter: { [Symbol.split](string: string, limit?: number): string[]; }, limit?: number): string[];
|
*/
|
||||||
}
|
split(splitter: { [Symbol.split](string: string, limit?: number): string[]; }, limit?: number): string[];
|
||||||
|
}
|
||||||
interface ArrayBuffer {
|
|
||||||
readonly [Symbol.toStringTag]: string;
|
interface ArrayBuffer {
|
||||||
}
|
readonly [Symbol.toStringTag]: string;
|
||||||
|
}
|
||||||
interface DataView {
|
|
||||||
readonly [Symbol.toStringTag]: string;
|
interface DataView {
|
||||||
}
|
readonly [Symbol.toStringTag]: string;
|
||||||
|
}
|
||||||
interface Int8Array {
|
|
||||||
readonly [Symbol.toStringTag]: "Int8Array";
|
interface Int8Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Int8Array";
|
||||||
|
}
|
||||||
interface Uint8Array {
|
|
||||||
readonly [Symbol.toStringTag]: "UInt8Array";
|
interface Uint8Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Uint8Array";
|
||||||
|
}
|
||||||
interface Uint8ClampedArray {
|
|
||||||
readonly [Symbol.toStringTag]: "Uint8ClampedArray";
|
interface Uint8ClampedArray {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Uint8ClampedArray";
|
||||||
|
}
|
||||||
interface Int16Array {
|
|
||||||
readonly [Symbol.toStringTag]: "Int16Array";
|
interface Int16Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Int16Array";
|
||||||
|
}
|
||||||
interface Uint16Array {
|
|
||||||
readonly [Symbol.toStringTag]: "Uint16Array";
|
interface Uint16Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Uint16Array";
|
||||||
|
}
|
||||||
interface Int32Array {
|
|
||||||
readonly [Symbol.toStringTag]: "Int32Array";
|
interface Int32Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Int32Array";
|
||||||
|
}
|
||||||
interface Uint32Array {
|
|
||||||
readonly [Symbol.toStringTag]: "Uint32Array";
|
interface Uint32Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Uint32Array";
|
||||||
|
}
|
||||||
interface Float32Array {
|
|
||||||
readonly [Symbol.toStringTag]: "Float32Array";
|
interface Float32Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Float32Array";
|
||||||
|
}
|
||||||
interface Float64Array {
|
|
||||||
readonly [Symbol.toStringTag]: "Float64Array";
|
interface Float64Array {
|
||||||
}
|
readonly [Symbol.toStringTag]: "Float64Array";
|
||||||
|
}
|
||||||
interface ArrayConstructor {
|
|
||||||
readonly [Symbol.species]: ArrayConstructor;
|
interface ArrayConstructor {
|
||||||
}
|
readonly [Symbol.species]: ArrayConstructor;
|
||||||
interface MapConstructor {
|
}
|
||||||
readonly [Symbol.species]: MapConstructor;
|
interface MapConstructor {
|
||||||
}
|
readonly [Symbol.species]: MapConstructor;
|
||||||
interface SetConstructor {
|
}
|
||||||
readonly [Symbol.species]: SetConstructor;
|
interface SetConstructor {
|
||||||
}
|
readonly [Symbol.species]: SetConstructor;
|
||||||
interface ArrayBufferConstructor {
|
}
|
||||||
readonly [Symbol.species]: ArrayBufferConstructor;
|
interface ArrayBufferConstructor {
|
||||||
}
|
readonly [Symbol.species]: ArrayBufferConstructor;
|
||||||
|
}
|
||||||
|
208
node_modules/typescript/lib/lib.es2016.array.include.d.ts
generated
vendored
208
node_modules/typescript/lib/lib.es2016.array.include.d.ts
generated
vendored
@ -1,118 +1,118 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface Array<T> {
|
interface Array<T> {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: T, fromIndex?: number): boolean;
|
includes(searchElement: T, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ReadonlyArray<T> {
|
interface ReadonlyArray<T> {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: T, fromIndex?: number): boolean;
|
includes(searchElement: T, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Int8Array {
|
interface Int8Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint8Array {
|
interface Uint8Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint8ClampedArray {
|
interface Uint8ClampedArray {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Int16Array {
|
interface Int16Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint16Array {
|
interface Uint16Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Int32Array {
|
interface Int32Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint32Array {
|
interface Uint32Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Float32Array {
|
interface Float32Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Float64Array {
|
interface Float64Array {
|
||||||
/**
|
/**
|
||||||
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
* @param searchElement The element to search for.
|
* @param searchElement The element to search for.
|
||||||
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
*/
|
*/
|
||||||
includes(searchElement: number, fromIndex?: number): boolean;
|
includes(searchElement: number, fromIndex?: number): boolean;
|
||||||
}
|
}
|
16
node_modules/typescript/lib/lib.es2016.d.ts
generated
vendored
16
node_modules/typescript/lib/lib.es2016.d.ts
generated
vendored
@ -1,22 +1,22 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015" />
|
/// <reference lib="es2015" />
|
||||||
/// <reference lib="es2016.array.include" />
|
/// <reference lib="es2016.array.include" />
|
22
node_modules/typescript/lib/lib.es2016.full.d.ts
generated
vendored
22
node_modules/typescript/lib/lib.es2016.full.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2016" />
|
/// <reference lib="es2016" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
/// <reference lib="dom.iterable" />
|
/// <reference lib="dom.iterable" />
|
26
node_modules/typescript/lib/lib.es2017.d.ts
generated
vendored
26
node_modules/typescript/lib/lib.es2017.d.ts
generated
vendored
@ -1,26 +1,26 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2016" />
|
/// <reference lib="es2016" />
|
||||||
/// <reference lib="es2017.object" />
|
/// <reference lib="es2017.object" />
|
||||||
/// <reference lib="es2017.sharedmemory" />
|
/// <reference lib="es2017.sharedmemory" />
|
||||||
/// <reference lib="es2017.string" />
|
/// <reference lib="es2017.string" />
|
||||||
/// <reference lib="es2017.intl" />
|
/// <reference lib="es2017.intl" />
|
||||||
/// <reference lib="es2017.typedarrays" />
|
/// <reference lib="es2017.typedarrays" />
|
||||||
|
22
node_modules/typescript/lib/lib.es2017.full.d.ts
generated
vendored
22
node_modules/typescript/lib/lib.es2017.full.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2017" />
|
/// <reference lib="es2017" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
/// <reference lib="dom.iterable" />
|
/// <reference lib="dom.iterable" />
|
38
node_modules/typescript/lib/lib.es2017.intl.d.ts
generated
vendored
38
node_modules/typescript/lib/lib.es2017.intl.d.ts
generated
vendored
@ -1,32 +1,32 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
declare namespace Intl {
|
declare namespace Intl {
|
||||||
type DateTimeFormatPartTypes = "day" | "dayPeriod" | "era" | "hour" | "literal" | "minute" | "month" | "second" | "timeZoneName" | "weekday" | "year";
|
type DateTimeFormatPartTypes = "day" | "dayPeriod" | "era" | "hour" | "literal" | "minute" | "month" | "second" | "timeZoneName" | "weekday" | "year";
|
||||||
|
|
||||||
interface DateTimeFormatPart {
|
interface DateTimeFormatPart {
|
||||||
type: DateTimeFormatPartTypes;
|
type: DateTimeFormatPartTypes;
|
||||||
value: string;
|
value: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DateTimeFormat {
|
interface DateTimeFormat {
|
||||||
formatToParts(date?: Date | number): DateTimeFormatPart[];
|
formatToParts(date?: Date | number): DateTimeFormatPart[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
76
node_modules/typescript/lib/lib.es2017.object.d.ts
generated
vendored
76
node_modules/typescript/lib/lib.es2017.object.d.ts
generated
vendored
@ -1,51 +1,51 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface ObjectConstructor {
|
interface ObjectConstructor {
|
||||||
/**
|
/**
|
||||||
* Returns an array of values of the enumerable properties of an object
|
* Returns an array of values of the enumerable properties of an object
|
||||||
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
||||||
*/
|
*/
|
||||||
values<T>(o: { [s: string]: T } | ArrayLike<T>): T[];
|
values<T>(o: { [s: string]: T } | ArrayLike<T>): T[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array of values of the enumerable properties of an object
|
* Returns an array of values of the enumerable properties of an object
|
||||||
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
||||||
*/
|
*/
|
||||||
values(o: {}): any[];
|
values(o: {}): any[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array of key/values of the enumerable properties of an object
|
* Returns an array of key/values of the enumerable properties of an object
|
||||||
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
||||||
*/
|
*/
|
||||||
entries<T>(o: { [s: string]: T } | ArrayLike<T>): [string, T][];
|
entries<T>(o: { [s: string]: T } | ArrayLike<T>): [string, T][];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array of key/values of the enumerable properties of an object
|
* Returns an array of key/values of the enumerable properties of an object
|
||||||
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
||||||
*/
|
*/
|
||||||
entries(o: {}): [string, any][];
|
entries(o: {}): [string, any][];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an object containing all own property descriptors of an object
|
* Returns an object containing all own property descriptors of an object
|
||||||
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
||||||
*/
|
*/
|
||||||
getOwnPropertyDescriptors<T>(o: T): {[P in keyof T]: TypedPropertyDescriptor<T[P]>} & { [x: string]: PropertyDescriptor };
|
getOwnPropertyDescriptors<T>(o: T): {[P in keyof T]: TypedPropertyDescriptor<T[P]>} & { [x: string]: PropertyDescriptor };
|
||||||
}
|
}
|
||||||
|
250
node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
generated
vendored
250
node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
generated
vendored
@ -1,138 +1,138 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.symbol" />
|
/// <reference lib="es2015.symbol" />
|
||||||
/// <reference lib="es2015.symbol.wellknown" />
|
/// <reference lib="es2015.symbol.wellknown" />
|
||||||
|
|
||||||
interface SharedArrayBuffer {
|
interface SharedArrayBuffer {
|
||||||
/**
|
/**
|
||||||
* Read-only. The length of the ArrayBuffer (in bytes).
|
* Read-only. The length of the ArrayBuffer (in bytes).
|
||||||
*/
|
*/
|
||||||
readonly byteLength: number;
|
readonly byteLength: number;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The SharedArrayBuffer constructor's length property whose value is 1.
|
* The SharedArrayBuffer constructor's length property whose value is 1.
|
||||||
*/
|
*/
|
||||||
length: number;
|
length: number;
|
||||||
/**
|
/**
|
||||||
* Returns a section of an SharedArrayBuffer.
|
* Returns a section of an SharedArrayBuffer.
|
||||||
*/
|
*/
|
||||||
slice(begin: number, end?: number): SharedArrayBuffer;
|
slice(begin: number, end?: number): SharedArrayBuffer;
|
||||||
readonly [Symbol.species]: SharedArrayBuffer;
|
readonly [Symbol.species]: SharedArrayBuffer;
|
||||||
readonly [Symbol.toStringTag]: "SharedArrayBuffer";
|
readonly [Symbol.toStringTag]: "SharedArrayBuffer";
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SharedArrayBufferConstructor {
|
interface SharedArrayBufferConstructor {
|
||||||
readonly prototype: SharedArrayBuffer;
|
readonly prototype: SharedArrayBuffer;
|
||||||
new (byteLength: number): SharedArrayBuffer;
|
new (byteLength: number): SharedArrayBuffer;
|
||||||
}
|
}
|
||||||
declare var SharedArrayBuffer: SharedArrayBufferConstructor;
|
declare var SharedArrayBuffer: SharedArrayBufferConstructor;
|
||||||
|
|
||||||
interface ArrayBufferTypes {
|
interface ArrayBufferTypes {
|
||||||
SharedArrayBuffer: SharedArrayBuffer;
|
SharedArrayBuffer: SharedArrayBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Atomics {
|
interface Atomics {
|
||||||
/**
|
/**
|
||||||
* Adds a value to the value at the given position in the array, returning the original value.
|
* Adds a value to the value at the given position in the array, returning the original value.
|
||||||
* Until this atomic operation completes, any other read or write operation against the array
|
* Until this atomic operation completes, any other read or write operation against the array
|
||||||
* will block.
|
* will block.
|
||||||
*/
|
*/
|
||||||
add(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
add(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores the bitwise AND of a value with the value at the given position in the array,
|
* Stores the bitwise AND of a value with the value at the given position in the array,
|
||||||
* returning the original value. Until this atomic operation completes, any other read or
|
* returning the original value. Until this atomic operation completes, any other read or
|
||||||
* write operation against the array will block.
|
* write operation against the array will block.
|
||||||
*/
|
*/
|
||||||
and(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
and(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replaces the value at the given position in the array if the original value equals the given
|
* Replaces the value at the given position in the array if the original value equals the given
|
||||||
* expected value, returning the original value. Until this atomic operation completes, any
|
* expected value, returning the original value. Until this atomic operation completes, any
|
||||||
* other read or write operation against the array will block.
|
* other read or write operation against the array will block.
|
||||||
*/
|
*/
|
||||||
compareExchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, expectedValue: number, replacementValue: number): number;
|
compareExchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, expectedValue: number, replacementValue: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replaces the value at the given position in the array, returning the original value. Until
|
* Replaces the value at the given position in the array, returning the original value. Until
|
||||||
* this atomic operation completes, any other read or write operation against the array will
|
* this atomic operation completes, any other read or write operation against the array will
|
||||||
* block.
|
* block.
|
||||||
*/
|
*/
|
||||||
exchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
exchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a value indicating whether high-performance algorithms can use atomic operations
|
* Returns a value indicating whether high-performance algorithms can use atomic operations
|
||||||
* (`true`) or must use locks (`false`) for the given number of bytes-per-element of a typed
|
* (`true`) or must use locks (`false`) for the given number of bytes-per-element of a typed
|
||||||
* array.
|
* array.
|
||||||
*/
|
*/
|
||||||
isLockFree(size: number): boolean;
|
isLockFree(size: number): boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the value at the given position in the array. Until this atomic operation completes,
|
* Returns the value at the given position in the array. Until this atomic operation completes,
|
||||||
* any other read or write operation against the array will block.
|
* any other read or write operation against the array will block.
|
||||||
*/
|
*/
|
||||||
load(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number): number;
|
load(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores the bitwise OR of a value with the value at the given position in the array,
|
* Stores the bitwise OR of a value with the value at the given position in the array,
|
||||||
* returning the original value. Until this atomic operation completes, any other read or write
|
* returning the original value. Until this atomic operation completes, any other read or write
|
||||||
* operation against the array will block.
|
* operation against the array will block.
|
||||||
*/
|
*/
|
||||||
or(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
or(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores a value at the given position in the array, returning the new value. Until this
|
* Stores a value at the given position in the array, returning the new value. Until this
|
||||||
* atomic operation completes, any other read or write operation against the array will block.
|
* atomic operation completes, any other read or write operation against the array will block.
|
||||||
*/
|
*/
|
||||||
store(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
store(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Subtracts a value from the value at the given position in the array, returning the original
|
* Subtracts a value from the value at the given position in the array, returning the original
|
||||||
* value. Until this atomic operation completes, any other read or write operation against the
|
* value. Until this atomic operation completes, any other read or write operation against the
|
||||||
* array will block.
|
* array will block.
|
||||||
*/
|
*/
|
||||||
sub(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
sub(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If the value at the given position in the array is equal to the provided value, the current
|
* If the value at the given position in the array is equal to the provided value, the current
|
||||||
* agent is put to sleep causing execution to suspend until the timeout expires (returning
|
* agent is put to sleep causing execution to suspend until the timeout expires (returning
|
||||||
* `"timed-out"`) or until the agent is awoken (returning `"ok"`); otherwise, returns
|
* `"timed-out"`) or until the agent is awoken (returning `"ok"`); otherwise, returns
|
||||||
* `"not-equal"`.
|
* `"not-equal"`.
|
||||||
*/
|
*/
|
||||||
wait(typedArray: Int32Array, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out";
|
wait(typedArray: Int32Array, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wakes up sleeping agents that are waiting on the given index of the array, returning the
|
* Wakes up sleeping agents that are waiting on the given index of the array, returning the
|
||||||
* number of agents that were awoken.
|
* number of agents that were awoken.
|
||||||
*/
|
*/
|
||||||
notify(typedArray: Int32Array, index: number, count: number): number;
|
notify(typedArray: Int32Array, index: number, count: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores the bitwise XOR of a value with the value at the given position in the array,
|
* Stores the bitwise XOR of a value with the value at the given position in the array,
|
||||||
* returning the original value. Until this atomic operation completes, any other read or write
|
* returning the original value. Until this atomic operation completes, any other read or write
|
||||||
* operation against the array will block.
|
* operation against the array will block.
|
||||||
*/
|
*/
|
||||||
xor(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
xor(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index: number, value: number): number;
|
||||||
|
|
||||||
readonly [Symbol.toStringTag]: "Atomics";
|
readonly [Symbol.toStringTag]: "Atomics";
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var Atomics: Atomics;
|
declare var Atomics: Atomics;
|
||||||
|
68
node_modules/typescript/lib/lib.es2017.string.d.ts
generated
vendored
68
node_modules/typescript/lib/lib.es2017.string.d.ts
generated
vendored
@ -1,47 +1,47 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface String {
|
interface String {
|
||||||
/**
|
/**
|
||||||
* Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.
|
* Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.
|
||||||
* The padding is applied from the start (left) of the current string.
|
* The padding is applied from the start (left) of the current string.
|
||||||
*
|
*
|
||||||
* @param maxLength The length of the resulting string once the current string has been padded.
|
* @param maxLength The length of the resulting string once the current string has been padded.
|
||||||
* If this parameter is smaller than the current string's length, the current string will be returned as it is.
|
* If this parameter is smaller than the current string's length, the current string will be returned as it is.
|
||||||
*
|
*
|
||||||
* @param fillString The string to pad the current string with.
|
* @param fillString The string to pad the current string with.
|
||||||
* If this string is too long, it will be truncated and the left-most part will be applied.
|
* If this string is too long, it will be truncated and the left-most part will be applied.
|
||||||
* The default value for this parameter is " " (U+0020).
|
* The default value for this parameter is " " (U+0020).
|
||||||
*/
|
*/
|
||||||
padStart(maxLength: number, fillString?: string): string;
|
padStart(maxLength: number, fillString?: string): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.
|
* Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.
|
||||||
* The padding is applied from the end (right) of the current string.
|
* The padding is applied from the end (right) of the current string.
|
||||||
*
|
*
|
||||||
* @param maxLength The length of the resulting string once the current string has been padded.
|
* @param maxLength The length of the resulting string once the current string has been padded.
|
||||||
* If this parameter is smaller than the current string's length, the current string will be returned as it is.
|
* If this parameter is smaller than the current string's length, the current string will be returned as it is.
|
||||||
*
|
*
|
||||||
* @param fillString The string to pad the current string with.
|
* @param fillString The string to pad the current string with.
|
||||||
* If this string is too long, it will be truncated and the left-most part will be applied.
|
* If this string is too long, it will be truncated and the left-most part will be applied.
|
||||||
* The default value for this parameter is " " (U+0020).
|
* The default value for this parameter is " " (U+0020).
|
||||||
*/
|
*/
|
||||||
padEnd(maxLength: number, fillString?: string): string;
|
padEnd(maxLength: number, fillString?: string): string;
|
||||||
}
|
}
|
||||||
|
84
node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
generated
vendored
84
node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
generated
vendored
@ -1,55 +1,55 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface Int8ArrayConstructor {
|
interface Int8ArrayConstructor {
|
||||||
new (): Int8Array;
|
new (): Int8Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint8ArrayConstructor {
|
interface Uint8ArrayConstructor {
|
||||||
new (): Uint8Array;
|
new (): Uint8Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint8ClampedArrayConstructor {
|
interface Uint8ClampedArrayConstructor {
|
||||||
new (): Uint8ClampedArray;
|
new (): Uint8ClampedArray;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Int16ArrayConstructor {
|
interface Int16ArrayConstructor {
|
||||||
new (): Int16Array;
|
new (): Int16Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint16ArrayConstructor {
|
interface Uint16ArrayConstructor {
|
||||||
new (): Uint16Array;
|
new (): Uint16Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Int32ArrayConstructor {
|
interface Int32ArrayConstructor {
|
||||||
new (): Int32Array;
|
new (): Int32Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Uint32ArrayConstructor {
|
interface Uint32ArrayConstructor {
|
||||||
new (): Uint32Array;
|
new (): Uint32Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Float32ArrayConstructor {
|
interface Float32ArrayConstructor {
|
||||||
new (): Float32Array;
|
new (): Float32Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Float64ArrayConstructor {
|
interface Float64ArrayConstructor {
|
||||||
new (): Float64Array;
|
new (): Float64Array;
|
||||||
}
|
}
|
||||||
|
132
node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
generated
vendored
132
node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
generated
vendored
@ -1,79 +1,79 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2018.asynciterable" />
|
/// <reference lib="es2018.asynciterable" />
|
||||||
|
|
||||||
interface AsyncGenerator<T = unknown, TReturn = any, TNext = unknown> extends AsyncIterator<T, TReturn, TNext> {
|
interface AsyncGenerator<T = unknown, TReturn = any, TNext = unknown> extends AsyncIterator<T, TReturn, TNext> {
|
||||||
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
||||||
next(...args: [] | [TNext | PromiseLike<TNext>]): Promise<IteratorResult<T, TReturn>>;
|
next(...args: [] | [TNext]): Promise<IteratorResult<T, TReturn>>;
|
||||||
return(value: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;
|
return(value: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;
|
||||||
throw(e: any): Promise<IteratorResult<T, TReturn>>;
|
throw(e: any): Promise<IteratorResult<T, TReturn>>;
|
||||||
[Symbol.asyncIterator](): AsyncGenerator<T, TReturn, TNext>;
|
[Symbol.asyncIterator](): AsyncGenerator<T, TReturn, TNext>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AsyncGeneratorFunction {
|
interface AsyncGeneratorFunction {
|
||||||
/**
|
/**
|
||||||
* Creates a new AsyncGenerator object.
|
* Creates a new AsyncGenerator object.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
new (...args: any[]): AsyncGenerator;
|
new (...args: any[]): AsyncGenerator;
|
||||||
/**
|
/**
|
||||||
* Creates a new AsyncGenerator object.
|
* Creates a new AsyncGenerator object.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
(...args: any[]): AsyncGenerator;
|
(...args: any[]): AsyncGenerator;
|
||||||
/**
|
/**
|
||||||
* The length of the arguments.
|
* The length of the arguments.
|
||||||
*/
|
*/
|
||||||
readonly length: number;
|
readonly length: number;
|
||||||
/**
|
/**
|
||||||
* Returns the name of the function.
|
* Returns the name of the function.
|
||||||
*/
|
*/
|
||||||
readonly name: string;
|
readonly name: string;
|
||||||
/**
|
/**
|
||||||
* A reference to the prototype.
|
* A reference to the prototype.
|
||||||
*/
|
*/
|
||||||
readonly prototype: AsyncGenerator;
|
readonly prototype: AsyncGenerator;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AsyncGeneratorFunctionConstructor {
|
interface AsyncGeneratorFunctionConstructor {
|
||||||
/**
|
/**
|
||||||
* Creates a new AsyncGenerator function.
|
* Creates a new AsyncGenerator function.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
new (...args: string[]): AsyncGeneratorFunction;
|
new (...args: string[]): AsyncGeneratorFunction;
|
||||||
/**
|
/**
|
||||||
* Creates a new AsyncGenerator function.
|
* Creates a new AsyncGenerator function.
|
||||||
* @param args A list of arguments the function accepts.
|
* @param args A list of arguments the function accepts.
|
||||||
*/
|
*/
|
||||||
(...args: string[]): AsyncGeneratorFunction;
|
(...args: string[]): AsyncGeneratorFunction;
|
||||||
/**
|
/**
|
||||||
* The length of the arguments.
|
* The length of the arguments.
|
||||||
*/
|
*/
|
||||||
readonly length: number;
|
readonly length: number;
|
||||||
/**
|
/**
|
||||||
* Returns the name of the function.
|
* Returns the name of the function.
|
||||||
*/
|
*/
|
||||||
readonly name: string;
|
readonly name: string;
|
||||||
/**
|
/**
|
||||||
* A reference to the prototype.
|
* A reference to the prototype.
|
||||||
*/
|
*/
|
||||||
readonly prototype: AsyncGeneratorFunction;
|
readonly prototype: AsyncGeneratorFunction;
|
||||||
}
|
}
|
||||||
|
62
node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
generated
vendored
62
node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
generated
vendored
@ -1,45 +1,45 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.symbol" />
|
/// <reference lib="es2015.symbol" />
|
||||||
/// <reference lib="es2015.iterable" />
|
/// <reference lib="es2015.iterable" />
|
||||||
|
|
||||||
interface SymbolConstructor {
|
interface SymbolConstructor {
|
||||||
/**
|
/**
|
||||||
* A method that returns the default async iterator for an object. Called by the semantics of
|
* A method that returns the default async iterator for an object. Called by the semantics of
|
||||||
* the for-await-of statement.
|
* the for-await-of statement.
|
||||||
*/
|
*/
|
||||||
readonly asyncIterator: symbol;
|
readonly asyncIterator: symbol;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AsyncIterator<T, TReturn = any, TNext = undefined> {
|
interface AsyncIterator<T, TReturn = any, TNext = undefined> {
|
||||||
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
|
||||||
next(...args: [] | [TNext | PromiseLike<TNext>]): Promise<IteratorResult<T, TReturn>>;
|
next(...args: [] | [TNext]): Promise<IteratorResult<T, TReturn>>;
|
||||||
return?(value?: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;
|
return?(value?: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;
|
||||||
throw?(e?: any): Promise<IteratorResult<T, TReturn>>;
|
throw?(e?: any): Promise<IteratorResult<T, TReturn>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AsyncIterable<T> {
|
interface AsyncIterable<T> {
|
||||||
[Symbol.asyncIterator](): AsyncIterator<T>;
|
[Symbol.asyncIterator](): AsyncIterator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AsyncIterableIterator<T> extends AsyncIterator<T> {
|
interface AsyncIterableIterator<T> extends AsyncIterator<T> {
|
||||||
[Symbol.asyncIterator](): AsyncIterableIterator<T>;
|
[Symbol.asyncIterator](): AsyncIterableIterator<T>;
|
||||||
}
|
}
|
26
node_modules/typescript/lib/lib.es2018.d.ts
generated
vendored
26
node_modules/typescript/lib/lib.es2018.d.ts
generated
vendored
@ -1,26 +1,26 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2017" />
|
/// <reference lib="es2017" />
|
||||||
/// <reference lib="es2018.asyncgenerator" />
|
/// <reference lib="es2018.asynciterable" />
|
||||||
/// <reference lib="es2018.asynciterable" />
|
/// <reference lib="es2018.asyncgenerator" />
|
||||||
/// <reference lib="es2018.promise" />
|
/// <reference lib="es2018.promise" />
|
||||||
/// <reference lib="es2018.regexp" />
|
/// <reference lib="es2018.regexp" />
|
||||||
/// <reference lib="es2018.intl" />
|
/// <reference lib="es2018.intl" />
|
||||||
|
22
node_modules/typescript/lib/lib.es2018.full.d.ts
generated
vendored
22
node_modules/typescript/lib/lib.es2018.full.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2018" />
|
/// <reference lib="es2018" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
/// <reference lib="dom.iterable" />
|
/// <reference lib="dom.iterable" />
|
86
node_modules/typescript/lib/lib.es2018.intl.d.ts
generated
vendored
86
node_modules/typescript/lib/lib.es2018.intl.d.ts
generated
vendored
@ -1,51 +1,61 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
declare namespace Intl {
|
declare namespace Intl {
|
||||||
interface PluralRulesOptions {
|
|
||||||
localeMatcher?: 'lookup' | 'best fit';
|
// http://cldr.unicode.org/index/cldr-spec/plural-rules#TOC-Determining-Plural-Categories
|
||||||
type?: 'cardinal' | 'ordinal';
|
type LDMLPluralRule = "zero" | "one" | "two" | "few" | "many" | "other";
|
||||||
}
|
type PluralRuleType = "cardinal" | "ordinal";
|
||||||
|
|
||||||
interface ResolvedPluralRulesOptions {
|
interface PluralRulesOptions {
|
||||||
locale: string;
|
localeMatcher?: "lookup" | "best fit";
|
||||||
pluralCategories: string[];
|
type?: PluralRuleType;
|
||||||
type: 'cardinal' | 'ordinal';
|
minimumIntegerDigits?: number;
|
||||||
minimumIntegerDigits: number;
|
minimumFractionDigits?: number;
|
||||||
minimumFractionDigits: number;
|
maximumFractionDigits?: number;
|
||||||
maximumFractionDigits: number;
|
minimumSignificantDigits?: number;
|
||||||
minimumSignificantDigits: number;
|
maximumSignificantDigits?: number;
|
||||||
maximumSignificantDigits: number;
|
}
|
||||||
}
|
|
||||||
|
interface ResolvedPluralRulesOptions {
|
||||||
interface PluralRules {
|
locale: string;
|
||||||
resolvedOptions(): ResolvedPluralRulesOptions;
|
pluralCategories: LDMLPluralRule[];
|
||||||
select(n: number): string;
|
type: PluralRuleType;
|
||||||
}
|
minimumIntegerDigits: number;
|
||||||
|
minimumFractionDigits: number;
|
||||||
const PluralRules: {
|
maximumFractionDigits: number;
|
||||||
new (locales?: string | string[], options?: PluralRulesOptions): PluralRules;
|
minimumSignificantDigits?: number;
|
||||||
(locales?: string | string[], options?: PluralRulesOptions): PluralRules;
|
maximumSignificantDigits?: number;
|
||||||
supportedLocalesOf(
|
}
|
||||||
locales: string | string[],
|
|
||||||
options?: PluralRulesOptions,
|
interface PluralRules {
|
||||||
): string[];
|
resolvedOptions(): ResolvedPluralRulesOptions;
|
||||||
};
|
select(n: number): LDMLPluralRule;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const PluralRules: {
|
||||||
|
new (locales?: string | string[], options?: PluralRulesOptions): PluralRules;
|
||||||
|
(locales?: string | string[], options?: PluralRulesOptions): PluralRules;
|
||||||
|
supportedLocalesOf(
|
||||||
|
locales: string | string[],
|
||||||
|
options?: PluralRulesOptions,
|
||||||
|
): string[];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
38
node_modules/typescript/lib/lib.es2018.promise.d.ts
generated
vendored
38
node_modules/typescript/lib/lib.es2018.promise.d.ts
generated
vendored
@ -1,32 +1,32 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents the completion of an asynchronous operation
|
* Represents the completion of an asynchronous operation
|
||||||
*/
|
*/
|
||||||
interface Promise<T> {
|
interface Promise<T> {
|
||||||
/**
|
/**
|
||||||
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
||||||
* resolved value cannot be modified from the callback.
|
* resolved value cannot be modified from the callback.
|
||||||
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
||||||
* @returns A Promise for the completion of the callback.
|
* @returns A Promise for the completion of the callback.
|
||||||
*/
|
*/
|
||||||
finally(onfinally?: (() => void) | undefined | null): Promise<T>
|
finally(onfinally?: (() => void) | undefined | null): Promise<T>
|
||||||
}
|
}
|
||||||
|
50
node_modules/typescript/lib/lib.es2018.regexp.d.ts
generated
vendored
50
node_modules/typescript/lib/lib.es2018.regexp.d.ts
generated
vendored
@ -1,39 +1,39 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface RegExpMatchArray {
|
interface RegExpMatchArray {
|
||||||
groups?: {
|
groups?: {
|
||||||
[key: string]: string
|
[key: string]: string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RegExpExecArray {
|
interface RegExpExecArray {
|
||||||
groups?: {
|
groups?: {
|
||||||
[key: string]: string
|
[key: string]: string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RegExp {
|
interface RegExp {
|
||||||
/**
|
/**
|
||||||
* Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression.
|
* Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression.
|
||||||
* Default is false. Read-only.
|
* Default is false. Read-only.
|
||||||
*/
|
*/
|
||||||
readonly dotAll: boolean;
|
readonly dotAll: boolean;
|
||||||
}
|
}
|
282
node_modules/typescript/lib/lib.es2019.array.d.ts
generated
vendored
282
node_modules/typescript/lib/lib.es2019.array.d.ts
generated
vendored
@ -1,223 +1,85 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface ReadonlyArray<T> {
|
type FlatArray<Arr, Depth extends number> = {
|
||||||
|
"done": Arr,
|
||||||
/**
|
"recur": Arr extends ReadonlyArray<infer InnerArr>
|
||||||
* Calls a defined callback function on each element of an array. Then, flattens the result into
|
? FlatArray<InnerArr, [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20][Depth]>
|
||||||
* a new array.
|
: Arr
|
||||||
* This is identical to a map followed by flat with depth 1.
|
}[Depth extends -1 ? "done" : "recur"];
|
||||||
*
|
|
||||||
* @param callback A function that accepts up to three arguments. The flatMap method calls the
|
interface ReadonlyArray<T> {
|
||||||
* callback function one time for each element in the array.
|
|
||||||
* @param thisArg An object to which the this keyword can refer in the callback function. If
|
/**
|
||||||
* thisArg is omitted, undefined is used as the this value.
|
* Calls a defined callback function on each element of an array. Then, flattens the result into
|
||||||
*/
|
* a new array.
|
||||||
flatMap<U, This = undefined> (
|
* This is identical to a map followed by flat with depth 1.
|
||||||
callback: (this: This, value: T, index: number, array: T[]) => U|ReadonlyArray<U>,
|
*
|
||||||
thisArg?: This
|
* @param callback A function that accepts up to three arguments. The flatMap method calls the
|
||||||
): U[]
|
* callback function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callback function. If
|
||||||
|
* thisArg is omitted, undefined is used as the this value.
|
||||||
/**
|
*/
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
flatMap<U, This = undefined> (
|
||||||
* specified depth.
|
callback: (this: This, value: T, index: number, array: T[]) => U | ReadonlyArray<U>,
|
||||||
*
|
thisArg?: This
|
||||||
* @param depth The maximum recursion depth
|
): U[]
|
||||||
*/
|
|
||||||
flat<U>(this:
|
|
||||||
ReadonlyArray<U[][][][]> |
|
/**
|
||||||
|
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
||||||
ReadonlyArray<ReadonlyArray<U[][][]>> |
|
* specified depth.
|
||||||
ReadonlyArray<ReadonlyArray<U[][]>[]> |
|
*
|
||||||
ReadonlyArray<ReadonlyArray<U[]>[][]> |
|
* @param depth The maximum recursion depth
|
||||||
ReadonlyArray<ReadonlyArray<U>[][][]> |
|
*/
|
||||||
|
flat<A, D extends number = 1>(
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[][]>>> |
|
this: A,
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[][]>> |
|
depth?: D
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>[][]> |
|
): FlatArray<A, D>[]
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[]>[]> |
|
}
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>>[]> |
|
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>[]>> |
|
interface Array<T> {
|
||||||
|
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>>>> |
|
/**
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[]>>> |
|
* Calls a defined callback function on each element of an array. Then, flattens the result into
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>[]>> |
|
* a new array.
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>[]> |
|
* This is identical to a map followed by flat with depth 1.
|
||||||
|
*
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>>>,
|
* @param callback A function that accepts up to three arguments. The flatMap method calls the
|
||||||
depth: 4): U[];
|
* callback function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callback function. If
|
||||||
/**
|
* thisArg is omitted, undefined is used as the this value.
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
*/
|
||||||
* specified depth.
|
flatMap<U, This = undefined> (
|
||||||
*
|
callback: (this: This, value: T, index: number, array: T[]) => U | ReadonlyArray<U>,
|
||||||
* @param depth The maximum recursion depth
|
thisArg?: This
|
||||||
*/
|
): U[]
|
||||||
flat<U>(this:
|
|
||||||
ReadonlyArray<U[][][]> |
|
/**
|
||||||
|
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
||||||
ReadonlyArray<ReadonlyArray<U>[][]> |
|
* specified depth.
|
||||||
ReadonlyArray<ReadonlyArray<U[]>[]> |
|
*
|
||||||
ReadonlyArray<ReadonlyArray<U[][]>> |
|
* @param depth The maximum recursion depth
|
||||||
|
*/
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>>> |
|
flat<A, D extends number = 1>(
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[]>> |
|
this: A,
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>[]> |
|
depth?: D
|
||||||
|
): FlatArray<A, D>[]
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>>,
|
}
|
||||||
depth: 3): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this:
|
|
||||||
ReadonlyArray<U[][]> |
|
|
||||||
|
|
||||||
ReadonlyArray<ReadonlyArray<U[]>> |
|
|
||||||
ReadonlyArray<ReadonlyArray<U>[]> |
|
|
||||||
|
|
||||||
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>,
|
|
||||||
depth: 2): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this:
|
|
||||||
ReadonlyArray<U[]> |
|
|
||||||
ReadonlyArray<ReadonlyArray<U>>,
|
|
||||||
depth?: 1
|
|
||||||
): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this:
|
|
||||||
ReadonlyArray<U>,
|
|
||||||
depth: 0
|
|
||||||
): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth. If no depth is provided, flat method defaults to the depth of 1.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(depth?: number): any[];
|
|
||||||
}
|
|
||||||
|
|
||||||
interface Array<T> {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Calls a defined callback function on each element of an array. Then, flattens the result into
|
|
||||||
* a new array.
|
|
||||||
* This is identical to a map followed by flat with depth 1.
|
|
||||||
*
|
|
||||||
* @param callback A function that accepts up to three arguments. The flatMap method calls the
|
|
||||||
* callback function one time for each element in the array.
|
|
||||||
* @param thisArg An object to which the this keyword can refer in the callback function. If
|
|
||||||
* thisArg is omitted, undefined is used as the this value.
|
|
||||||
*/
|
|
||||||
flatMap<U, This = undefined> (
|
|
||||||
callback: (this: This, value: T, index: number, array: T[]) => U|ReadonlyArray<U>,
|
|
||||||
thisArg?: This
|
|
||||||
): U[]
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[][][][][][][][], depth: 7): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[][][][][][][], depth: 6): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[][][][][][], depth: 5): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[][][][][], depth: 4): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[][][][], depth: 3): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[][][], depth: 2): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[][], depth?: 1): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(this: U[], depth: 0): U[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a new array with all sub-array elements concatenated into it recursively up to the
|
|
||||||
* specified depth. If no depth is provided, flat method defaults to the depth of 1.
|
|
||||||
*
|
|
||||||
* @param depth The maximum recursion depth
|
|
||||||
*/
|
|
||||||
flat<U>(depth?: number): any[];
|
|
||||||
}
|
|
||||||
|
24
node_modules/typescript/lib/lib.es2019.d.ts
generated
vendored
24
node_modules/typescript/lib/lib.es2019.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2018" />
|
/// <reference lib="es2018" />
|
||||||
/// <reference lib="es2019.array" />
|
/// <reference lib="es2019.array" />
|
||||||
/// <reference lib="es2019.object" />
|
/// <reference lib="es2019.object" />
|
||||||
/// <reference lib="es2019.string" />
|
/// <reference lib="es2019.string" />
|
||||||
/// <reference lib="es2019.symbol" />
|
/// <reference lib="es2019.symbol" />
|
||||||
|
24
node_modules/typescript/lib/lib.es2019.full.d.ts
generated
vendored
24
node_modules/typescript/lib/lib.es2019.full.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2019" />
|
/// <reference lib="es2019" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
/// <reference lib="dom.iterable" />
|
/// <reference lib="dom.iterable" />
|
||||||
|
44
node_modules/typescript/lib/lib.es2019.object.d.ts
generated
vendored
44
node_modules/typescript/lib/lib.es2019.object.d.ts
generated
vendored
@ -1,35 +1,35 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.iterable" />
|
/// <reference lib="es2015.iterable" />
|
||||||
|
|
||||||
interface ObjectConstructor {
|
interface ObjectConstructor {
|
||||||
/**
|
/**
|
||||||
* Returns an object created by key-value entries for properties and methods
|
* Returns an object created by key-value entries for properties and methods
|
||||||
* @param entries An iterable object that contains key-value entries for properties and methods.
|
* @param entries An iterable object that contains key-value entries for properties and methods.
|
||||||
*/
|
*/
|
||||||
fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): { [k in PropertyKey]: T };
|
fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): { [k: string]: T };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an object created by key-value entries for properties and methods
|
* Returns an object created by key-value entries for properties and methods
|
||||||
* @param entries An iterable object that contains key-value entries for properties and methods.
|
* @param entries An iterable object that contains key-value entries for properties and methods.
|
||||||
*/
|
*/
|
||||||
fromEntries(entries: Iterable<readonly any[]>): any;
|
fromEntries(entries: Iterable<readonly any[]>): any;
|
||||||
}
|
}
|
||||||
|
40
node_modules/typescript/lib/lib.es2019.string.d.ts
generated
vendored
40
node_modules/typescript/lib/lib.es2019.string.d.ts
generated
vendored
@ -1,33 +1,33 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface String {
|
interface String {
|
||||||
/** Removes the trailing white space and line terminator characters from a string. */
|
/** Removes the trailing white space and line terminator characters from a string. */
|
||||||
trimEnd(): string;
|
trimEnd(): string;
|
||||||
|
|
||||||
/** Removes the leading white space and line terminator characters from a string. */
|
/** Removes the leading white space and line terminator characters from a string. */
|
||||||
trimStart(): string;
|
trimStart(): string;
|
||||||
|
|
||||||
/** Removes the leading white space and line terminator characters from a string. */
|
/** Removes the leading white space and line terminator characters from a string. */
|
||||||
trimLeft(): string;
|
trimLeft(): string;
|
||||||
|
|
||||||
/** Removes the trailing white space and line terminator characters from a string. */
|
/** Removes the trailing white space and line terminator characters from a string. */
|
||||||
trimRight(): string;
|
trimRight(): string;
|
||||||
}
|
}
|
||||||
|
26
node_modules/typescript/lib/lib.es2019.symbol.d.ts
generated
vendored
26
node_modules/typescript/lib/lib.es2019.symbol.d.ts
generated
vendored
@ -1,26 +1,26 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
interface Symbol {
|
interface Symbol {
|
||||||
/**
|
/**
|
||||||
* expose the [[Description]] internal slot of a symbol directly
|
* Expose the [[Description]] internal slot of a symbol directly.
|
||||||
*/
|
*/
|
||||||
readonly description: string;
|
readonly description: string | undefined;
|
||||||
}
|
}
|
||||||
|
635
node_modules/typescript/lib/lib.es2020.bigint.d.ts
generated
vendored
Normal file
635
node_modules/typescript/lib/lib.es2020.bigint.d.ts
generated
vendored
Normal file
@ -0,0 +1,635 @@
|
|||||||
|
/*! *****************************************************************************
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
|
interface BigInt {
|
||||||
|
/**
|
||||||
|
* Returns a string representation of an object.
|
||||||
|
* @param radix Specifies a radix for converting numeric values to strings.
|
||||||
|
*/
|
||||||
|
toString(radix?: number): string;
|
||||||
|
|
||||||
|
/** Returns a string representation appropriate to the host environment's current locale. */
|
||||||
|
toLocaleString(): string;
|
||||||
|
|
||||||
|
/** Returns the primitive value of the specified object. */
|
||||||
|
valueOf(): bigint;
|
||||||
|
|
||||||
|
readonly [Symbol.toStringTag]: "BigInt";
|
||||||
|
}
|
||||||
|
|
||||||
|
interface BigIntConstructor {
|
||||||
|
(value?: any): bigint;
|
||||||
|
readonly prototype: BigInt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interprets the low bits of a BigInt as a 2's-complement signed integer.
|
||||||
|
* All higher bits are discarded.
|
||||||
|
* @param bits The number of low bits to use
|
||||||
|
* @param int The BigInt whose bits to extract
|
||||||
|
*/
|
||||||
|
asIntN(bits: number, int: bigint): bigint;
|
||||||
|
/**
|
||||||
|
* Interprets the low bits of a BigInt as an unsigned integer.
|
||||||
|
* All higher bits are discarded.
|
||||||
|
* @param bits The number of low bits to use
|
||||||
|
* @param int The BigInt whose bits to extract
|
||||||
|
*/
|
||||||
|
asUintN(bits: number, int: bigint): bigint;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var BigInt: BigIntConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A typed array of 64-bit signed integer values. The contents are initialized to 0. If the
|
||||||
|
* requested number of bytes could not be allocated, an exception is raised.
|
||||||
|
*/
|
||||||
|
interface BigInt64Array {
|
||||||
|
/** The size in bytes of each element in the array. */
|
||||||
|
readonly BYTES_PER_ELEMENT: number;
|
||||||
|
|
||||||
|
/** The ArrayBuffer instance referenced by the array. */
|
||||||
|
readonly buffer: ArrayBufferLike;
|
||||||
|
|
||||||
|
/** The length in bytes of the array. */
|
||||||
|
readonly byteLength: number;
|
||||||
|
|
||||||
|
/** The offset in bytes of the array. */
|
||||||
|
readonly byteOffset: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the this object after copying a section of the array identified by start and end
|
||||||
|
* to the same array starting at position target
|
||||||
|
* @param target If target is negative, it is treated as length+target where length is the
|
||||||
|
* length of the array.
|
||||||
|
* @param start If start is negative, it is treated as length+start. If end is negative, it
|
||||||
|
* is treated as length+end.
|
||||||
|
* @param end If not specified, length of the this object is used as its default value.
|
||||||
|
*/
|
||||||
|
copyWithin(target: number, start: number, end?: number): this;
|
||||||
|
|
||||||
|
/** Yields index, value pairs for every entry in the array. */
|
||||||
|
entries(): IterableIterator<[number, bigint]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether all the members of an array satisfy the specified test.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The every method calls
|
||||||
|
* the callbackfn function for each element in the array until the callbackfn returns false,
|
||||||
|
* or until the end of the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
every(callbackfn: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the this object after filling the section identified by start and end with value
|
||||||
|
* @param value value to fill array section with
|
||||||
|
* @param start index to start filling the array at. If start is negative, it is treated as
|
||||||
|
* length+start where length is the length of the array.
|
||||||
|
* @param end index to stop filling the array at. If end is negative, it is treated as
|
||||||
|
* length+end.
|
||||||
|
*/
|
||||||
|
fill(value: bigint, start?: number, end?: number): this;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the elements of an array that meet the condition specified in a callback function.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The filter method calls
|
||||||
|
* the callbackfn function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
filter(callbackfn: (value: bigint, index: number, array: BigInt64Array) => any, thisArg?: any): BigInt64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the value of the first element in the array where predicate is true, and undefined
|
||||||
|
* otherwise.
|
||||||
|
* @param predicate find calls predicate once for each element of the array, in ascending
|
||||||
|
* order, until it finds one where predicate returns true. If such an element is found, find
|
||||||
|
* immediately returns that element value. Otherwise, find returns undefined.
|
||||||
|
* @param thisArg If provided, it will be used as the this value for each invocation of
|
||||||
|
* predicate. If it is not provided, undefined is used instead.
|
||||||
|
*/
|
||||||
|
find(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): bigint | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the index of the first element in the array where predicate is true, and -1
|
||||||
|
* otherwise.
|
||||||
|
* @param predicate find calls predicate once for each element of the array, in ascending
|
||||||
|
* order, until it finds one where predicate returns true. If such an element is found,
|
||||||
|
* findIndex immediately returns that element index. Otherwise, findIndex returns -1.
|
||||||
|
* @param thisArg If provided, it will be used as the this value for each invocation of
|
||||||
|
* predicate. If it is not provided, undefined is used instead.
|
||||||
|
*/
|
||||||
|
findIndex(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Performs the specified action for each element in an array.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. forEach calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
forEach(callbackfn: (value: bigint, index: number, array: BigInt64Array) => void, thisArg?: any): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
|
* @param searchElement The element to search for.
|
||||||
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
|
*/
|
||||||
|
includes(searchElement: bigint, fromIndex?: number): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the index of the first occurrence of a value in an array.
|
||||||
|
* @param searchElement The value to locate in the array.
|
||||||
|
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
|
||||||
|
* search starts at index 0.
|
||||||
|
*/
|
||||||
|
indexOf(searchElement: bigint, fromIndex?: number): number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds all the elements of an array separated by the specified separator string.
|
||||||
|
* @param separator A string used to separate one element of an array from the next in the
|
||||||
|
* resulting String. If omitted, the array elements are separated with a comma.
|
||||||
|
*/
|
||||||
|
join(separator?: string): string;
|
||||||
|
|
||||||
|
/** Yields each index in the array. */
|
||||||
|
keys(): IterableIterator<number>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the index of the last occurrence of a value in an array.
|
||||||
|
* @param searchElement The value to locate in the array.
|
||||||
|
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
|
||||||
|
* search starts at index 0.
|
||||||
|
*/
|
||||||
|
lastIndexOf(searchElement: bigint, fromIndex?: number): number;
|
||||||
|
|
||||||
|
/** The length of the array. */
|
||||||
|
readonly length: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls a defined callback function on each element of an array, and returns an array that
|
||||||
|
* contains the results.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The map method calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
map(callbackfn: (value: bigint, index: number, array: BigInt64Array) => bigint, thisArg?: any): BigInt64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array. The return value of
|
||||||
|
* the callback function is the accumulated result, and is provided as an argument in the next
|
||||||
|
* call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an argument
|
||||||
|
* instead of an array value.
|
||||||
|
*/
|
||||||
|
reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): bigint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array. The return value of
|
||||||
|
* the callback function is the accumulated result, and is provided as an argument in the next
|
||||||
|
* call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an argument
|
||||||
|
* instead of an array value.
|
||||||
|
*/
|
||||||
|
reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initialValue: U): U;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array, in descending order.
|
||||||
|
* The return value of the callback function is the accumulated result, and is provided as an
|
||||||
|
* argument in the next call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
|
||||||
|
* the callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an
|
||||||
|
* argument instead of an array value.
|
||||||
|
*/
|
||||||
|
reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): bigint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array, in descending order.
|
||||||
|
* The return value of the callback function is the accumulated result, and is provided as an
|
||||||
|
* argument in the next call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
|
||||||
|
* the callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an argument
|
||||||
|
* instead of an array value.
|
||||||
|
*/
|
||||||
|
reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initialValue: U): U;
|
||||||
|
|
||||||
|
/** Reverses the elements in the array. */
|
||||||
|
reverse(): this;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a value or an array of values.
|
||||||
|
* @param array A typed or untyped array of values to set.
|
||||||
|
* @param offset The index in the current array at which the values are to be written.
|
||||||
|
*/
|
||||||
|
set(array: ArrayLike<bigint>, offset?: number): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a section of an array.
|
||||||
|
* @param start The beginning of the specified portion of the array.
|
||||||
|
* @param end The end of the specified portion of the array.
|
||||||
|
*/
|
||||||
|
slice(start?: number, end?: number): BigInt64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether the specified callback function returns true for any element of an array.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The some method calls the
|
||||||
|
* callbackfn function for each element in the array until the callbackfn returns true, or until
|
||||||
|
* the end of the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
some(callbackfn: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sorts the array.
|
||||||
|
* @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.
|
||||||
|
*/
|
||||||
|
sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets a new BigInt64Array view of the ArrayBuffer store for this array, referencing the elements
|
||||||
|
* at begin, inclusive, up to end, exclusive.
|
||||||
|
* @param begin The index of the beginning of the array.
|
||||||
|
* @param end The index of the end of the array.
|
||||||
|
*/
|
||||||
|
subarray(begin?: number, end?: number): BigInt64Array;
|
||||||
|
|
||||||
|
/** Converts the array to a string by using the current locale. */
|
||||||
|
toLocaleString(): string;
|
||||||
|
|
||||||
|
/** Returns a string representation of the array. */
|
||||||
|
toString(): string;
|
||||||
|
|
||||||
|
/** Returns the primitive value of the specified object. */
|
||||||
|
valueOf(): BigInt64Array;
|
||||||
|
|
||||||
|
/** Yields each value in the array. */
|
||||||
|
values(): IterableIterator<bigint>;
|
||||||
|
|
||||||
|
[Symbol.iterator](): IterableIterator<bigint>;
|
||||||
|
|
||||||
|
readonly [Symbol.toStringTag]: "BigInt64Array";
|
||||||
|
|
||||||
|
[index: number]: bigint;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface BigInt64ArrayConstructor {
|
||||||
|
readonly prototype: BigInt64Array;
|
||||||
|
new(length?: number): BigInt64Array;
|
||||||
|
new(array: Iterable<bigint>): BigInt64Array;
|
||||||
|
new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array;
|
||||||
|
|
||||||
|
/** The size in bytes of each element in the array. */
|
||||||
|
readonly BYTES_PER_ELEMENT: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a new array from a set of elements.
|
||||||
|
* @param items A set of elements to include in the new array object.
|
||||||
|
*/
|
||||||
|
of(...items: bigint[]): BigInt64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an array from an array-like or iterable object.
|
||||||
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
|
*/
|
||||||
|
from(arrayLike: ArrayLike<bigint>): BigInt64Array;
|
||||||
|
from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigInt64Array;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var BigInt64Array: BigInt64ArrayConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A typed array of 64-bit unsigned integer values. The contents are initialized to 0. If the
|
||||||
|
* requested number of bytes could not be allocated, an exception is raised.
|
||||||
|
*/
|
||||||
|
interface BigUint64Array {
|
||||||
|
/** The size in bytes of each element in the array. */
|
||||||
|
readonly BYTES_PER_ELEMENT: number;
|
||||||
|
|
||||||
|
/** The ArrayBuffer instance referenced by the array. */
|
||||||
|
readonly buffer: ArrayBufferLike;
|
||||||
|
|
||||||
|
/** The length in bytes of the array. */
|
||||||
|
readonly byteLength: number;
|
||||||
|
|
||||||
|
/** The offset in bytes of the array. */
|
||||||
|
readonly byteOffset: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the this object after copying a section of the array identified by start and end
|
||||||
|
* to the same array starting at position target
|
||||||
|
* @param target If target is negative, it is treated as length+target where length is the
|
||||||
|
* length of the array.
|
||||||
|
* @param start If start is negative, it is treated as length+start. If end is negative, it
|
||||||
|
* is treated as length+end.
|
||||||
|
* @param end If not specified, length of the this object is used as its default value.
|
||||||
|
*/
|
||||||
|
copyWithin(target: number, start: number, end?: number): this;
|
||||||
|
|
||||||
|
/** Yields index, value pairs for every entry in the array. */
|
||||||
|
entries(): IterableIterator<[number, bigint]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether all the members of an array satisfy the specified test.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The every method calls
|
||||||
|
* the callbackfn function for each element in the array until the callbackfn returns false,
|
||||||
|
* or until the end of the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
every(callbackfn: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the this object after filling the section identified by start and end with value
|
||||||
|
* @param value value to fill array section with
|
||||||
|
* @param start index to start filling the array at. If start is negative, it is treated as
|
||||||
|
* length+start where length is the length of the array.
|
||||||
|
* @param end index to stop filling the array at. If end is negative, it is treated as
|
||||||
|
* length+end.
|
||||||
|
*/
|
||||||
|
fill(value: bigint, start?: number, end?: number): this;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the elements of an array that meet the condition specified in a callback function.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The filter method calls
|
||||||
|
* the callbackfn function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
filter(callbackfn: (value: bigint, index: number, array: BigUint64Array) => any, thisArg?: any): BigUint64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the value of the first element in the array where predicate is true, and undefined
|
||||||
|
* otherwise.
|
||||||
|
* @param predicate find calls predicate once for each element of the array, in ascending
|
||||||
|
* order, until it finds one where predicate returns true. If such an element is found, find
|
||||||
|
* immediately returns that element value. Otherwise, find returns undefined.
|
||||||
|
* @param thisArg If provided, it will be used as the this value for each invocation of
|
||||||
|
* predicate. If it is not provided, undefined is used instead.
|
||||||
|
*/
|
||||||
|
find(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): bigint | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the index of the first element in the array where predicate is true, and -1
|
||||||
|
* otherwise.
|
||||||
|
* @param predicate find calls predicate once for each element of the array, in ascending
|
||||||
|
* order, until it finds one where predicate returns true. If such an element is found,
|
||||||
|
* findIndex immediately returns that element index. Otherwise, findIndex returns -1.
|
||||||
|
* @param thisArg If provided, it will be used as the this value for each invocation of
|
||||||
|
* predicate. If it is not provided, undefined is used instead.
|
||||||
|
*/
|
||||||
|
findIndex(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Performs the specified action for each element in an array.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. forEach calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
forEach(callbackfn: (value: bigint, index: number, array: BigUint64Array) => void, thisArg?: any): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether an array includes a certain element, returning true or false as appropriate.
|
||||||
|
* @param searchElement The element to search for.
|
||||||
|
* @param fromIndex The position in this array at which to begin searching for searchElement.
|
||||||
|
*/
|
||||||
|
includes(searchElement: bigint, fromIndex?: number): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the index of the first occurrence of a value in an array.
|
||||||
|
* @param searchElement The value to locate in the array.
|
||||||
|
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
|
||||||
|
* search starts at index 0.
|
||||||
|
*/
|
||||||
|
indexOf(searchElement: bigint, fromIndex?: number): number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds all the elements of an array separated by the specified separator string.
|
||||||
|
* @param separator A string used to separate one element of an array from the next in the
|
||||||
|
* resulting String. If omitted, the array elements are separated with a comma.
|
||||||
|
*/
|
||||||
|
join(separator?: string): string;
|
||||||
|
|
||||||
|
/** Yields each index in the array. */
|
||||||
|
keys(): IterableIterator<number>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the index of the last occurrence of a value in an array.
|
||||||
|
* @param searchElement The value to locate in the array.
|
||||||
|
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
|
||||||
|
* search starts at index 0.
|
||||||
|
*/
|
||||||
|
lastIndexOf(searchElement: bigint, fromIndex?: number): number;
|
||||||
|
|
||||||
|
/** The length of the array. */
|
||||||
|
readonly length: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls a defined callback function on each element of an array, and returns an array that
|
||||||
|
* contains the results.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The map method calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
map(callbackfn: (value: bigint, index: number, array: BigUint64Array) => bigint, thisArg?: any): BigUint64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array. The return value of
|
||||||
|
* the callback function is the accumulated result, and is provided as an argument in the next
|
||||||
|
* call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an argument
|
||||||
|
* instead of an array value.
|
||||||
|
*/
|
||||||
|
reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): bigint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array. The return value of
|
||||||
|
* the callback function is the accumulated result, and is provided as an argument in the next
|
||||||
|
* call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
|
||||||
|
* callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an argument
|
||||||
|
* instead of an array value.
|
||||||
|
*/
|
||||||
|
reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initialValue: U): U;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array, in descending order.
|
||||||
|
* The return value of the callback function is the accumulated result, and is provided as an
|
||||||
|
* argument in the next call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
|
||||||
|
* the callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an
|
||||||
|
* argument instead of an array value.
|
||||||
|
*/
|
||||||
|
reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): bigint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls the specified callback function for all the elements in an array, in descending order.
|
||||||
|
* The return value of the callback function is the accumulated result, and is provided as an
|
||||||
|
* argument in the next call to the callback function.
|
||||||
|
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
|
||||||
|
* the callbackfn function one time for each element in the array.
|
||||||
|
* @param initialValue If initialValue is specified, it is used as the initial value to start
|
||||||
|
* the accumulation. The first call to the callbackfn function provides this value as an argument
|
||||||
|
* instead of an array value.
|
||||||
|
*/
|
||||||
|
reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initialValue: U): U;
|
||||||
|
|
||||||
|
/** Reverses the elements in the array. */
|
||||||
|
reverse(): this;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a value or an array of values.
|
||||||
|
* @param array A typed or untyped array of values to set.
|
||||||
|
* @param offset The index in the current array at which the values are to be written.
|
||||||
|
*/
|
||||||
|
set(array: ArrayLike<bigint>, offset?: number): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a section of an array.
|
||||||
|
* @param start The beginning of the specified portion of the array.
|
||||||
|
* @param end The end of the specified portion of the array.
|
||||||
|
*/
|
||||||
|
slice(start?: number, end?: number): BigUint64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether the specified callback function returns true for any element of an array.
|
||||||
|
* @param callbackfn A function that accepts up to three arguments. The some method calls the
|
||||||
|
* callbackfn function for each element in the array until the callbackfn returns true, or until
|
||||||
|
* the end of the array.
|
||||||
|
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
|
||||||
|
* If thisArg is omitted, undefined is used as the this value.
|
||||||
|
*/
|
||||||
|
some(callbackfn: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sorts the array.
|
||||||
|
* @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.
|
||||||
|
*/
|
||||||
|
sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets a new BigUint64Array view of the ArrayBuffer store for this array, referencing the elements
|
||||||
|
* at begin, inclusive, up to end, exclusive.
|
||||||
|
* @param begin The index of the beginning of the array.
|
||||||
|
* @param end The index of the end of the array.
|
||||||
|
*/
|
||||||
|
subarray(begin?: number, end?: number): BigUint64Array;
|
||||||
|
|
||||||
|
/** Converts the array to a string by using the current locale. */
|
||||||
|
toLocaleString(): string;
|
||||||
|
|
||||||
|
/** Returns a string representation of the array. */
|
||||||
|
toString(): string;
|
||||||
|
|
||||||
|
/** Returns the primitive value of the specified object. */
|
||||||
|
valueOf(): BigUint64Array;
|
||||||
|
|
||||||
|
/** Yields each value in the array. */
|
||||||
|
values(): IterableIterator<bigint>;
|
||||||
|
|
||||||
|
[Symbol.iterator](): IterableIterator<bigint>;
|
||||||
|
|
||||||
|
readonly [Symbol.toStringTag]: "BigUint64Array";
|
||||||
|
|
||||||
|
[index: number]: bigint;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface BigUint64ArrayConstructor {
|
||||||
|
readonly prototype: BigUint64Array;
|
||||||
|
new(length?: number): BigUint64Array;
|
||||||
|
new(array: Iterable<bigint>): BigUint64Array;
|
||||||
|
new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array;
|
||||||
|
|
||||||
|
/** The size in bytes of each element in the array. */
|
||||||
|
readonly BYTES_PER_ELEMENT: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a new array from a set of elements.
|
||||||
|
* @param items A set of elements to include in the new array object.
|
||||||
|
*/
|
||||||
|
of(...items: bigint[]): BigUint64Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an array from an array-like or iterable object.
|
||||||
|
* @param arrayLike An array-like or iterable object to convert to an array.
|
||||||
|
* @param mapfn A mapping function to call on every element of the array.
|
||||||
|
* @param thisArg Value of 'this' used to invoke the mapfn.
|
||||||
|
*/
|
||||||
|
from(arrayLike: ArrayLike<bigint>): BigUint64Array;
|
||||||
|
from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigUint64Array;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var BigUint64Array: BigUint64ArrayConstructor;
|
||||||
|
|
||||||
|
interface DataView {
|
||||||
|
/**
|
||||||
|
* Gets the BigInt64 value at the specified byte offset from the start of the view. There is
|
||||||
|
* no alignment constraint; multi-byte values may be fetched from any offset.
|
||||||
|
* @param byteOffset The place in the buffer at which the value should be retrieved.
|
||||||
|
*/
|
||||||
|
getBigInt64(byteOffset: number, littleEndian?: boolean): bigint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the BigUint64 value at the specified byte offset from the start of the view. There is
|
||||||
|
* no alignment constraint; multi-byte values may be fetched from any offset.
|
||||||
|
* @param byteOffset The place in the buffer at which the value should be retrieved.
|
||||||
|
*/
|
||||||
|
getBigUint64(byteOffset: number, littleEndian?: boolean): bigint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores a BigInt64 value at the specified byte offset from the start of the view.
|
||||||
|
* @param byteOffset The place in the buffer at which the value should be set.
|
||||||
|
* @param value The value to set.
|
||||||
|
* @param littleEndian If false or undefined, a big-endian value should be written,
|
||||||
|
* otherwise a little-endian value should be written.
|
||||||
|
*/
|
||||||
|
setBigInt64(byteOffset: number, value: bigint, littleEndian?: boolean): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores a BigUint64 value at the specified byte offset from the start of the view.
|
||||||
|
* @param byteOffset The place in the buffer at which the value should be set.
|
||||||
|
* @param value The value to set.
|
||||||
|
* @param littleEndian If false or undefined, a big-endian value should be written,
|
||||||
|
* otherwise a little-endian value should be written.
|
||||||
|
*/
|
||||||
|
setBigUint64(byteOffset: number, value: bigint, littleEndian?: boolean): void;
|
||||||
|
}
|
22
node_modules/typescript/lib/lib.es2020.d.ts
generated
vendored
22
node_modules/typescript/lib/lib.es2020.d.ts
generated
vendored
@ -1,23 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2019" />
|
/// <reference lib="es2019" />
|
||||||
/// <reference lib="es2020.string" />
|
/// <reference lib="es2020.bigint" />
|
||||||
/// <reference lib="es2020.symbol.wellknown" />
|
/// <reference lib="es2020.promise" />
|
||||||
|
/// <reference lib="es2020.string" />
|
||||||
|
/// <reference lib="es2020.symbol.wellknown" />
|
||||||
|
24
node_modules/typescript/lib/lib.es2020.full.d.ts
generated
vendored
24
node_modules/typescript/lib/lib.es2020.full.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2020" />
|
/// <reference lib="es2020" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
/// <reference lib="dom.iterable" />
|
/// <reference lib="dom.iterable" />
|
||||||
|
50
node_modules/typescript/lib/lib.es2020.promise.d.ts
generated
vendored
Normal file
50
node_modules/typescript/lib/lib.es2020.promise.d.ts
generated
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
/*! *****************************************************************************
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
|
interface PromiseFulfilledResult<T> {
|
||||||
|
status: "fulfilled";
|
||||||
|
value: T;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PromiseRejectedResult {
|
||||||
|
status: "rejected";
|
||||||
|
reason: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
type PromiseSettledResult<T> = PromiseFulfilledResult<T> | PromiseRejectedResult;
|
||||||
|
|
||||||
|
interface PromiseConstructor {
|
||||||
|
/**
|
||||||
|
* Creates a Promise that is resolved with an array of results when all
|
||||||
|
* of the provided Promises resolve or reject.
|
||||||
|
* @param values An array of Promises.
|
||||||
|
* @returns A new Promise.
|
||||||
|
*/
|
||||||
|
allSettled<T extends readonly unknown[] | readonly [unknown]>(values: T):
|
||||||
|
Promise<{ -readonly [P in keyof T]: PromiseSettledResult<T[P] extends PromiseLike<infer U> ? U : T[P]> }>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a Promise that is resolved with an array of results when all
|
||||||
|
* of the provided Promises resolve or reject.
|
||||||
|
* @param values An array of Promises.
|
||||||
|
* @returns A new Promise.
|
||||||
|
*/
|
||||||
|
allSettled<T>(values: Iterable<T>): Promise<PromiseSettledResult<T extends PromiseLike<infer U> ? U : T>[]>;
|
||||||
|
}
|
34
node_modules/typescript/lib/lib.es2020.string.d.ts
generated
vendored
34
node_modules/typescript/lib/lib.es2020.string.d.ts
generated
vendored
@ -1,30 +1,30 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.iterable" />
|
/// <reference lib="es2015.iterable" />
|
||||||
|
|
||||||
interface String {
|
interface String {
|
||||||
/**
|
/**
|
||||||
* Matches a string with a regular expression, and returns an iterable of matches
|
* Matches a string with a regular expression, and returns an iterable of matches
|
||||||
* containing the results of that search.
|
* containing the results of that search.
|
||||||
* @param regexp A variable name or string literal containing the regular expression pattern and flags.
|
* @param regexp A variable name or string literal containing the regular expression pattern and flags.
|
||||||
*/
|
*/
|
||||||
matchAll(regexp: RegExp): IterableIterator<RegExpMatchArray>;
|
matchAll(regexp: RegExp): IterableIterator<RegExpMatchArray>;
|
||||||
}
|
}
|
||||||
|
52
node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts
generated
vendored
52
node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts
generated
vendored
@ -1,39 +1,39 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015.iterable" />
|
/// <reference lib="es2015.iterable" />
|
||||||
/// <reference lib="es2015.symbol" />
|
/// <reference lib="es2015.symbol" />
|
||||||
|
|
||||||
interface SymbolConstructor {
|
interface SymbolConstructor {
|
||||||
/**
|
/**
|
||||||
* A regular expression method that matches the regular expression against a string. Called
|
* A regular expression method that matches the regular expression against a string. Called
|
||||||
* by the String.prototype.matchAll method.
|
* by the String.prototype.matchAll method.
|
||||||
*/
|
*/
|
||||||
readonly matchAll: symbol;
|
readonly matchAll: symbol;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RegExp {
|
interface RegExp {
|
||||||
/**
|
/**
|
||||||
* Matches a string with this regular expression, and returns an iterable of matches
|
* Matches a string with this regular expression, and returns an iterable of matches
|
||||||
* containing the results of that search.
|
* containing the results of that search.
|
||||||
* @param string A string to search within.
|
* @param string A string to search within.
|
||||||
*/
|
*/
|
||||||
[Symbol.matchAll](str: string): IterableIterator<RegExpMatchArray>;
|
[Symbol.matchAll](str: string): IterableIterator<RegExpMatchArray>;
|
||||||
}
|
}
|
||||||
|
8673
node_modules/typescript/lib/lib.es5.d.ts
generated
vendored
8673
node_modules/typescript/lib/lib.es5.d.ts
generated
vendored
File diff suppressed because it is too large
Load Diff
24
node_modules/typescript/lib/lib.es6.d.ts
generated
vendored
24
node_modules/typescript/lib/lib.es6.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2015" />
|
/// <reference lib="es2015" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="dom.iterable" />
|
/// <reference lib="dom.iterable" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
|
21
node_modules/typescript/lib/lib.esnext.d.ts
generated
vendored
21
node_modules/typescript/lib/lib.esnext.d.ts
generated
vendored
@ -1,23 +1,24 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="es2019" />
|
/// <reference lib="es2020" />
|
||||||
/// <reference lib="esnext.bigint" />
|
/// <reference lib="esnext.intl" />
|
||||||
/// <reference lib="esnext.intl" />
|
/// <reference lib="esnext.string" />
|
||||||
|
/// <reference lib="esnext.promise" />
|
||||||
|
22
node_modules/typescript/lib/lib.esnext.full.d.ts
generated
vendored
22
node_modules/typescript/lib/lib.esnext.full.d.ts
generated
vendored
@ -1,25 +1,25 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/// <reference lib="esnext" />
|
/// <reference lib="esnext" />
|
||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
/// <reference lib="webworker.importscripts" />
|
/// <reference lib="webworker.importscripts" />
|
||||||
/// <reference lib="scripthost" />
|
/// <reference lib="scripthost" />
|
||||||
/// <reference lib="dom.iterable" />
|
/// <reference lib="dom.iterable" />
|
38
node_modules/typescript/lib/lib.esnext.intl.d.ts
generated
vendored
38
node_modules/typescript/lib/lib.esnext.intl.d.ts
generated
vendored
@ -1,32 +1,32 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
declare namespace Intl {
|
declare namespace Intl {
|
||||||
type NumberFormatPartTypes = "currency" | "decimal" | "fraction" | "group" | "infinity" | "integer" | "literal" | "minusSign" | "nan" | "plusSign" | "percentSign";
|
type NumberFormatPartTypes = "currency" | "decimal" | "fraction" | "group" | "infinity" | "integer" | "literal" | "minusSign" | "nan" | "plusSign" | "percentSign";
|
||||||
|
|
||||||
interface NumberFormatPart {
|
interface NumberFormatPart {
|
||||||
type: NumberFormatPartTypes;
|
type: NumberFormatPartTypes;
|
||||||
value: string;
|
value: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface NumberFormat {
|
interface NumberFormat {
|
||||||
formatToParts(number?: number): NumberFormatPart[];
|
formatToParts(number?: number): NumberFormatPart[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
43
node_modules/typescript/lib/lib.esnext.promise.d.ts
generated
vendored
Normal file
43
node_modules/typescript/lib/lib.esnext.promise.d.ts
generated
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
/*! *****************************************************************************
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
|
interface AggregateError extends Error {
|
||||||
|
errors: any[]
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AggregateErrorConstructor {
|
||||||
|
new(errors: Iterable<any>, message?: string): AggregateError;
|
||||||
|
(errors: Iterable<any>, message?: string): AggregateError;
|
||||||
|
readonly prototype: AggregateError;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var AggregateError: AggregateErrorConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents the completion of an asynchronous operation
|
||||||
|
*/
|
||||||
|
interface PromiseConstructor {
|
||||||
|
/**
|
||||||
|
* The any function returns a promise that is fulfilled by the first given promise to be fulfilled, or rejected with an AggregateError containing an array of rejection reasons if all of the given promises are rejected. It resolves all elements of the passed iterable to promises as it runs this algorithm.
|
||||||
|
* @param values An array or iterable of Promises.
|
||||||
|
* @returns A new Promise.
|
||||||
|
*/
|
||||||
|
any<T>(values: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<T>
|
||||||
|
}
|
35
node_modules/typescript/lib/lib.esnext.string.d.ts
generated
vendored
Normal file
35
node_modules/typescript/lib/lib.esnext.string.d.ts
generated
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*! *****************************************************************************
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
|
interface String {
|
||||||
|
/**
|
||||||
|
* Replace all instances of a substring in a string, using a regular expression or search string.
|
||||||
|
* @param searchValue A string to search for.
|
||||||
|
* @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.
|
||||||
|
*/
|
||||||
|
replaceAll(searchValue: string | RegExp, replaceValue: string): string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Replace all instances of a substring in a string, using a regular expression or search string.
|
||||||
|
* @param searchValue A string to search for.
|
||||||
|
* @param replacer A function that returns the replacement text.
|
||||||
|
*/
|
||||||
|
replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
||||||
|
}
|
628
node_modules/typescript/lib/lib.scripthost.d.ts
generated
vendored
628
node_modules/typescript/lib/lib.scripthost.d.ts
generated
vendored
@ -1,327 +1,327 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
/// Windows Script Host APIS
|
/// Windows Script Host APIS
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
interface ActiveXObject {
|
interface ActiveXObject {
|
||||||
new (s: string): any;
|
new (s: string): any;
|
||||||
}
|
}
|
||||||
declare var ActiveXObject: ActiveXObject;
|
declare var ActiveXObject: ActiveXObject;
|
||||||
|
|
||||||
interface ITextWriter {
|
interface ITextWriter {
|
||||||
Write(s: string): void;
|
Write(s: string): void;
|
||||||
WriteLine(s: string): void;
|
WriteLine(s: string): void;
|
||||||
Close(): void;
|
Close(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TextStreamBase {
|
interface TextStreamBase {
|
||||||
/**
|
/**
|
||||||
* The column number of the current character position in an input stream.
|
* The column number of the current character position in an input stream.
|
||||||
*/
|
*/
|
||||||
Column: number;
|
Column: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The current line number in an input stream.
|
* The current line number in an input stream.
|
||||||
*/
|
*/
|
||||||
Line: number;
|
Line: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Closes a text stream.
|
* Closes a text stream.
|
||||||
* It is not necessary to close standard streams; they close automatically when the process ends. If
|
* It is not necessary to close standard streams; they close automatically when the process ends. If
|
||||||
* you close a standard stream, be aware that any other pointers to that standard stream become invalid.
|
* you close a standard stream, be aware that any other pointers to that standard stream become invalid.
|
||||||
*/
|
*/
|
||||||
Close(): void;
|
Close(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TextStreamWriter extends TextStreamBase {
|
interface TextStreamWriter extends TextStreamBase {
|
||||||
/**
|
/**
|
||||||
* Sends a string to an output stream.
|
* Sends a string to an output stream.
|
||||||
*/
|
*/
|
||||||
Write(s: string): void;
|
Write(s: string): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends a specified number of blank lines (newline characters) to an output stream.
|
* Sends a specified number of blank lines (newline characters) to an output stream.
|
||||||
*/
|
*/
|
||||||
WriteBlankLines(intLines: number): void;
|
WriteBlankLines(intLines: number): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends a string followed by a newline character to an output stream.
|
* Sends a string followed by a newline character to an output stream.
|
||||||
*/
|
*/
|
||||||
WriteLine(s: string): void;
|
WriteLine(s: string): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TextStreamReader extends TextStreamBase {
|
interface TextStreamReader extends TextStreamBase {
|
||||||
/**
|
/**
|
||||||
* Returns a specified number of characters from an input stream, starting at the current pointer position.
|
* Returns a specified number of characters from an input stream, starting at the current pointer position.
|
||||||
* Does not return until the ENTER key is pressed.
|
* Does not return until the ENTER key is pressed.
|
||||||
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
||||||
*/
|
*/
|
||||||
Read(characters: number): string;
|
Read(characters: number): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns all characters from an input stream.
|
* Returns all characters from an input stream.
|
||||||
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
||||||
*/
|
*/
|
||||||
ReadAll(): string;
|
ReadAll(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an entire line from an input stream.
|
* Returns an entire line from an input stream.
|
||||||
* Although this method extracts the newline character, it does not add it to the returned string.
|
* Although this method extracts the newline character, it does not add it to the returned string.
|
||||||
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
||||||
*/
|
*/
|
||||||
ReadLine(): string;
|
ReadLine(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skips a specified number of characters when reading from an input text stream.
|
* Skips a specified number of characters when reading from an input text stream.
|
||||||
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
* Can only be used on a stream in reading mode; causes an error in writing or appending mode.
|
||||||
* @param characters Positive number of characters to skip forward. (Backward skipping is not supported.)
|
* @param characters Positive number of characters to skip forward. (Backward skipping is not supported.)
|
||||||
*/
|
*/
|
||||||
Skip(characters: number): void;
|
Skip(characters: number): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skips the next line when reading from an input text stream.
|
* Skips the next line when reading from an input text stream.
|
||||||
* Can only be used on a stream in reading mode, not writing or appending mode.
|
* Can only be used on a stream in reading mode, not writing or appending mode.
|
||||||
*/
|
*/
|
||||||
SkipLine(): void;
|
SkipLine(): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates whether the stream pointer position is at the end of a line.
|
* Indicates whether the stream pointer position is at the end of a line.
|
||||||
*/
|
*/
|
||||||
AtEndOfLine: boolean;
|
AtEndOfLine: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates whether the stream pointer position is at the end of a stream.
|
* Indicates whether the stream pointer position is at the end of a stream.
|
||||||
*/
|
*/
|
||||||
AtEndOfStream: boolean;
|
AtEndOfStream: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var WScript: {
|
declare var WScript: {
|
||||||
/**
|
/**
|
||||||
* Outputs text to either a message box (under WScript.exe) or the command console window followed by
|
* Outputs text to either a message box (under WScript.exe) or the command console window followed by
|
||||||
* a newline (under CScript.exe).
|
* a newline (under CScript.exe).
|
||||||
*/
|
*/
|
||||||
Echo(s: any): void;
|
Echo(s: any): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exposes the write-only error output stream for the current script.
|
* Exposes the write-only error output stream for the current script.
|
||||||
* Can be accessed only while using CScript.exe.
|
* Can be accessed only while using CScript.exe.
|
||||||
*/
|
*/
|
||||||
StdErr: TextStreamWriter;
|
StdErr: TextStreamWriter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exposes the write-only output stream for the current script.
|
* Exposes the write-only output stream for the current script.
|
||||||
* Can be accessed only while using CScript.exe.
|
* Can be accessed only while using CScript.exe.
|
||||||
*/
|
*/
|
||||||
StdOut: TextStreamWriter;
|
StdOut: TextStreamWriter;
|
||||||
Arguments: { length: number; Item(n: number): string; };
|
Arguments: { length: number; Item(n: number): string; };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The full path of the currently running script.
|
* The full path of the currently running script.
|
||||||
*/
|
*/
|
||||||
ScriptFullName: string;
|
ScriptFullName: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Forces the script to stop immediately, with an optional exit code.
|
* Forces the script to stop immediately, with an optional exit code.
|
||||||
*/
|
*/
|
||||||
Quit(exitCode?: number): number;
|
Quit(exitCode?: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Windows Script Host build version number.
|
* The Windows Script Host build version number.
|
||||||
*/
|
*/
|
||||||
BuildVersion: number;
|
BuildVersion: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fully qualified path of the host executable.
|
* Fully qualified path of the host executable.
|
||||||
*/
|
*/
|
||||||
FullName: string;
|
FullName: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets/sets the script mode - interactive(true) or batch(false).
|
* Gets/sets the script mode - interactive(true) or batch(false).
|
||||||
*/
|
*/
|
||||||
Interactive: boolean;
|
Interactive: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the host executable (WScript.exe or CScript.exe).
|
* The name of the host executable (WScript.exe or CScript.exe).
|
||||||
*/
|
*/
|
||||||
Name: string;
|
Name: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Path of the directory containing the host executable.
|
* Path of the directory containing the host executable.
|
||||||
*/
|
*/
|
||||||
Path: string;
|
Path: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The filename of the currently running script.
|
* The filename of the currently running script.
|
||||||
*/
|
*/
|
||||||
ScriptName: string;
|
ScriptName: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exposes the read-only input stream for the current script.
|
* Exposes the read-only input stream for the current script.
|
||||||
* Can be accessed only while using CScript.exe.
|
* Can be accessed only while using CScript.exe.
|
||||||
*/
|
*/
|
||||||
StdIn: TextStreamReader;
|
StdIn: TextStreamReader;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Windows Script Host version
|
* Windows Script Host version
|
||||||
*/
|
*/
|
||||||
Version: string;
|
Version: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Connects a COM object's event sources to functions named with a given prefix, in the form prefix_event.
|
* Connects a COM object's event sources to functions named with a given prefix, in the form prefix_event.
|
||||||
*/
|
*/
|
||||||
ConnectObject(objEventSource: any, strPrefix: string): void;
|
ConnectObject(objEventSource: any, strPrefix: string): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a COM object.
|
* Creates a COM object.
|
||||||
* @param strProgiID
|
* @param strProgiID
|
||||||
* @param strPrefix Function names in the form prefix_event will be bound to this object's COM events.
|
* @param strPrefix Function names in the form prefix_event will be bound to this object's COM events.
|
||||||
*/
|
*/
|
||||||
CreateObject(strProgID: string, strPrefix?: string): any;
|
CreateObject(strProgID: string, strPrefix?: string): any;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disconnects a COM object from its event sources.
|
* Disconnects a COM object from its event sources.
|
||||||
*/
|
*/
|
||||||
DisconnectObject(obj: any): void;
|
DisconnectObject(obj: any): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves an existing object with the specified ProgID from memory, or creates a new one from a file.
|
* Retrieves an existing object with the specified ProgID from memory, or creates a new one from a file.
|
||||||
* @param strPathname Fully qualified path to the file containing the object persisted to disk.
|
* @param strPathname Fully qualified path to the file containing the object persisted to disk.
|
||||||
* For objects in memory, pass a zero-length string.
|
* For objects in memory, pass a zero-length string.
|
||||||
* @param strProgID
|
* @param strProgID
|
||||||
* @param strPrefix Function names in the form prefix_event will be bound to this object's COM events.
|
* @param strPrefix Function names in the form prefix_event will be bound to this object's COM events.
|
||||||
*/
|
*/
|
||||||
GetObject(strPathname: string, strProgID?: string, strPrefix?: string): any;
|
GetObject(strPathname: string, strProgID?: string, strPrefix?: string): any;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Suspends script execution for a specified length of time, then continues execution.
|
* Suspends script execution for a specified length of time, then continues execution.
|
||||||
* @param intTime Interval (in milliseconds) to suspend script execution.
|
* @param intTime Interval (in milliseconds) to suspend script execution.
|
||||||
*/
|
*/
|
||||||
Sleep(intTime: number): void;
|
Sleep(intTime: number): void;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WSH is an alias for WScript under Windows Script Host
|
* WSH is an alias for WScript under Windows Script Host
|
||||||
*/
|
*/
|
||||||
declare var WSH: typeof WScript;
|
declare var WSH: typeof WScript;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents an Automation SAFEARRAY
|
* Represents an Automation SAFEARRAY
|
||||||
*/
|
*/
|
||||||
declare class SafeArray<T = any> {
|
declare class SafeArray<T = any> {
|
||||||
private constructor();
|
private constructor();
|
||||||
private SafeArray_typekey: SafeArray<T>;
|
private SafeArray_typekey: SafeArray<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allows enumerating over a COM collection, which may not have indexed item access.
|
* Allows enumerating over a COM collection, which may not have indexed item access.
|
||||||
*/
|
*/
|
||||||
interface Enumerator<T = any> {
|
interface Enumerator<T = any> {
|
||||||
/**
|
/**
|
||||||
* Returns true if the current item is the last one in the collection, or the collection is empty,
|
* Returns true if the current item is the last one in the collection, or the collection is empty,
|
||||||
* or the current item is undefined.
|
* or the current item is undefined.
|
||||||
*/
|
*/
|
||||||
atEnd(): boolean;
|
atEnd(): boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the current item in the collection
|
* Returns the current item in the collection
|
||||||
*/
|
*/
|
||||||
item(): T;
|
item(): T;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resets the current item in the collection to the first item. If there are no items in the collection,
|
* Resets the current item in the collection to the first item. If there are no items in the collection,
|
||||||
* the current item is set to undefined.
|
* the current item is set to undefined.
|
||||||
*/
|
*/
|
||||||
moveFirst(): void;
|
moveFirst(): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Moves the current item to the next item in the collection. If the enumerator is at the end of
|
* Moves the current item to the next item in the collection. If the enumerator is at the end of
|
||||||
* the collection or the collection is empty, the current item is set to undefined.
|
* the collection or the collection is empty, the current item is set to undefined.
|
||||||
*/
|
*/
|
||||||
moveNext(): void;
|
moveNext(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface EnumeratorConstructor {
|
interface EnumeratorConstructor {
|
||||||
new <T = any>(safearray: SafeArray<T>): Enumerator<T>;
|
new <T = any>(safearray: SafeArray<T>): Enumerator<T>;
|
||||||
new <T = any>(collection: { Item(index: any): T }): Enumerator<T>;
|
new <T = any>(collection: { Item(index: any): T }): Enumerator<T>;
|
||||||
new <T = any>(collection: any): Enumerator<T>;
|
new <T = any>(collection: any): Enumerator<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var Enumerator: EnumeratorConstructor;
|
declare var Enumerator: EnumeratorConstructor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enables reading from a COM safe array, which might have an alternate lower bound, or multiple dimensions.
|
* Enables reading from a COM safe array, which might have an alternate lower bound, or multiple dimensions.
|
||||||
*/
|
*/
|
||||||
interface VBArray<T = any> {
|
interface VBArray<T = any> {
|
||||||
/**
|
/**
|
||||||
* Returns the number of dimensions (1-based).
|
* Returns the number of dimensions (1-based).
|
||||||
*/
|
*/
|
||||||
dimensions(): number;
|
dimensions(): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Takes an index for each dimension in the array, and returns the item at the corresponding location.
|
* Takes an index for each dimension in the array, and returns the item at the corresponding location.
|
||||||
*/
|
*/
|
||||||
getItem(dimension1Index: number, ...dimensionNIndexes: number[]): T;
|
getItem(dimension1Index: number, ...dimensionNIndexes: number[]): T;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the smallest available index for a given dimension.
|
* Returns the smallest available index for a given dimension.
|
||||||
* @param dimension 1-based dimension (defaults to 1)
|
* @param dimension 1-based dimension (defaults to 1)
|
||||||
*/
|
*/
|
||||||
lbound(dimension?: number): number;
|
lbound(dimension?: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the largest available index for a given dimension.
|
* Returns the largest available index for a given dimension.
|
||||||
* @param dimension 1-based dimension (defaults to 1)
|
* @param dimension 1-based dimension (defaults to 1)
|
||||||
*/
|
*/
|
||||||
ubound(dimension?: number): number;
|
ubound(dimension?: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a Javascript array with all the elements in the VBArray. If there are multiple dimensions,
|
* Returns a Javascript array with all the elements in the VBArray. If there are multiple dimensions,
|
||||||
* each successive dimension is appended to the end of the array.
|
* each successive dimension is appended to the end of the array.
|
||||||
* Example: [[1,2,3],[4,5,6]] becomes [1,2,3,4,5,6]
|
* Example: [[1,2,3],[4,5,6]] becomes [1,2,3,4,5,6]
|
||||||
*/
|
*/
|
||||||
toArray(): T[];
|
toArray(): T[];
|
||||||
}
|
}
|
||||||
|
|
||||||
interface VBArrayConstructor {
|
interface VBArrayConstructor {
|
||||||
new <T = any>(safeArray: SafeArray<T>): VBArray<T>;
|
new <T = any>(safeArray: SafeArray<T>): VBArray<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var VBArray: VBArrayConstructor;
|
declare var VBArray: VBArrayConstructor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Automation date (VT_DATE)
|
* Automation date (VT_DATE)
|
||||||
*/
|
*/
|
||||||
declare class VarDate {
|
declare class VarDate {
|
||||||
private constructor();
|
private constructor();
|
||||||
private VarDate_typekey: VarDate;
|
private VarDate_typekey: VarDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DateConstructor {
|
interface DateConstructor {
|
||||||
new (vd: VarDate): Date;
|
new (vd: VarDate): Date;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Date {
|
interface Date {
|
||||||
getVarDate: () => VarDate;
|
getVarDate: () => VarDate;
|
||||||
}
|
}
|
||||||
|
482
node_modules/typescript/lib/lib.webworker.d.ts
generated
vendored
482
node_modules/typescript/lib/lib.webworker.d.ts
generated
vendored
@ -1,21 +1,21 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
@ -239,6 +239,15 @@ interface IDBVersionChangeEventInit extends EventInit {
|
|||||||
oldVersion?: number;
|
oldVersion?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ImageBitmapOptions {
|
||||||
|
colorSpaceConversion?: ColorSpaceConversion;
|
||||||
|
imageOrientation?: ImageOrientation;
|
||||||
|
premultiplyAlpha?: PremultiplyAlpha;
|
||||||
|
resizeHeight?: number;
|
||||||
|
resizeQuality?: ResizeQuality;
|
||||||
|
resizeWidth?: number;
|
||||||
|
}
|
||||||
|
|
||||||
interface ImageBitmapRenderingContextSettings {
|
interface ImageBitmapRenderingContextSettings {
|
||||||
alpha?: boolean;
|
alpha?: boolean;
|
||||||
}
|
}
|
||||||
@ -370,7 +379,7 @@ interface PushPermissionDescriptor extends PermissionDescriptor {
|
|||||||
userVisibleOnly?: boolean;
|
userVisibleOnly?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PushSubscriptionChangeInit extends ExtendableEventInit {
|
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
|
||||||
newSubscription?: PushSubscription;
|
newSubscription?: PushSubscription;
|
||||||
oldSubscription?: PushSubscription;
|
oldSubscription?: PushSubscription;
|
||||||
}
|
}
|
||||||
@ -391,6 +400,16 @@ interface QueuingStrategy<T = any> {
|
|||||||
size?: QueuingStrategySizeCallback<T>;
|
size?: QueuingStrategySizeCallback<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ReadableStreamReadDoneResult<T> {
|
||||||
|
done: true;
|
||||||
|
value?: T;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ReadableStreamReadValueResult<T> {
|
||||||
|
done: false;
|
||||||
|
value: T;
|
||||||
|
}
|
||||||
|
|
||||||
interface RegistrationOptions {
|
interface RegistrationOptions {
|
||||||
scope?: string;
|
scope?: string;
|
||||||
type?: WorkerType;
|
type?: WorkerType;
|
||||||
@ -642,7 +661,10 @@ interface AnimationFrameProvider {
|
|||||||
interface Blob {
|
interface Blob {
|
||||||
readonly size: number;
|
readonly size: number;
|
||||||
readonly type: string;
|
readonly type: string;
|
||||||
|
arrayBuffer(): Promise<ArrayBuffer>;
|
||||||
slice(start?: number, end?: number, contentType?: string): Blob;
|
slice(start?: number, end?: number, contentType?: string): Blob;
|
||||||
|
stream(): ReadableStream;
|
||||||
|
text(): Promise<string>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var Blob: {
|
declare var Blob: {
|
||||||
@ -723,7 +745,7 @@ interface CacheStorage {
|
|||||||
delete(cacheName: string): Promise<boolean>;
|
delete(cacheName: string): Promise<boolean>;
|
||||||
has(cacheName: string): Promise<boolean>;
|
has(cacheName: string): Promise<boolean>;
|
||||||
keys(): Promise<string[]>;
|
keys(): Promise<string[]>;
|
||||||
match(request: RequestInfo, options?: CacheQueryOptions): Promise<Response | undefined>;
|
match(request: RequestInfo, options?: MultiCacheQueryOptions): Promise<Response | undefined>;
|
||||||
open(cacheName: string): Promise<Cache>;
|
open(cacheName: string): Promise<Cache>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -761,7 +783,7 @@ interface CanvasFillStrokeStyles {
|
|||||||
fillStyle: string | CanvasGradient | CanvasPattern;
|
fillStyle: string | CanvasGradient | CanvasPattern;
|
||||||
strokeStyle: string | CanvasGradient | CanvasPattern;
|
strokeStyle: string | CanvasGradient | CanvasPattern;
|
||||||
createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
|
createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
|
||||||
createPattern(image: CanvasImageSource, repetition: string): CanvasPattern | null;
|
createPattern(image: CanvasImageSource, repetition: string | null): CanvasPattern | null;
|
||||||
createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
|
createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -903,11 +925,18 @@ declare var Clients: {
|
|||||||
|
|
||||||
/** A CloseEvent is sent to clients using WebSockets when the connection is closed. This is delivered to the listener indicated by the WebSocket object's onclose attribute. */
|
/** A CloseEvent is sent to clients using WebSockets when the connection is closed. This is delivered to the listener indicated by the WebSocket object's onclose attribute. */
|
||||||
interface CloseEvent extends Event {
|
interface CloseEvent extends Event {
|
||||||
|
/**
|
||||||
|
* Returns the WebSocket connection close code provided by the server.
|
||||||
|
*/
|
||||||
readonly code: number;
|
readonly code: number;
|
||||||
|
/**
|
||||||
|
* Returns the WebSocket connection close reason provided by the server.
|
||||||
|
*/
|
||||||
readonly reason: string;
|
readonly reason: string;
|
||||||
|
/**
|
||||||
|
* Returns true if the connection closed cleanly; false otherwise.
|
||||||
|
*/
|
||||||
readonly wasClean: boolean;
|
readonly wasClean: boolean;
|
||||||
/** @deprecated */
|
|
||||||
initCloseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, wasCleanArg: boolean, codeArg: number, reasonArg: string): void;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var CloseEvent: {
|
declare var CloseEvent: {
|
||||||
@ -924,40 +953,6 @@ interface ConcatParams extends Algorithm {
|
|||||||
publicInfo?: Uint8Array;
|
publicInfo?: Uint8Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Provides access to the browser's debugging console (e.g. the Web Console in Firefox). The specifics of how it works varies from browser to browser, but there is a de facto set of features that are typically provided. */
|
|
||||||
interface Console {
|
|
||||||
memory: any;
|
|
||||||
assert(condition?: boolean, message?: string, ...data: any[]): void;
|
|
||||||
clear(): void;
|
|
||||||
count(label?: string): void;
|
|
||||||
debug(message?: any, ...optionalParams: any[]): void;
|
|
||||||
dir(value?: any, ...optionalParams: any[]): void;
|
|
||||||
dirxml(value: any): void;
|
|
||||||
error(message?: any, ...optionalParams: any[]): void;
|
|
||||||
exception(message?: string, ...optionalParams: any[]): void;
|
|
||||||
group(groupTitle?: string, ...optionalParams: any[]): void;
|
|
||||||
groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void;
|
|
||||||
groupEnd(): void;
|
|
||||||
info(message?: any, ...optionalParams: any[]): void;
|
|
||||||
log(message?: any, ...optionalParams: any[]): void;
|
|
||||||
markTimeline(label?: string): void;
|
|
||||||
profile(reportName?: string): void;
|
|
||||||
profileEnd(reportName?: string): void;
|
|
||||||
table(...tabularData: any[]): void;
|
|
||||||
time(label?: string): void;
|
|
||||||
timeEnd(label?: string): void;
|
|
||||||
timeStamp(label?: string): void;
|
|
||||||
timeline(label?: string): void;
|
|
||||||
timelineEnd(label?: string): void;
|
|
||||||
trace(message?: any, ...optionalParams: any[]): void;
|
|
||||||
warn(message?: any, ...optionalParams: any[]): void;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare var Console: {
|
|
||||||
prototype: Console;
|
|
||||||
new(): Console;
|
|
||||||
};
|
|
||||||
|
|
||||||
/** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
|
/** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
|
||||||
interface CountQueuingStrategy extends QueuingStrategy {
|
interface CountQueuingStrategy extends QueuingStrategy {
|
||||||
highWaterMark: number;
|
highWaterMark: number;
|
||||||
@ -1264,12 +1259,24 @@ declare var DOMStringList: {
|
|||||||
|
|
||||||
interface DedicatedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
interface DedicatedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
||||||
"message": MessageEvent;
|
"message": MessageEvent;
|
||||||
|
"messageerror": MessageEvent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** (the Worker global scope) is accessible through the self keyword. Some additional global functions, namespaces objects, and constructors, not typically associated with the worker global scope, but available on it, are listed in the JavaScript Reference. See also: Functions available to workers. */
|
/** (the Worker global scope) is accessible through the self keyword. Some additional global functions, namespaces objects, and constructors, not typically associated with the worker global scope, but available on it, are listed in the JavaScript Reference. See also: Functions available to workers. */
|
||||||
interface DedicatedWorkerGlobalScope extends WorkerGlobalScope, AnimationFrameProvider {
|
interface DedicatedWorkerGlobalScope extends WorkerGlobalScope, AnimationFrameProvider {
|
||||||
|
/**
|
||||||
|
* Returns dedicatedWorkerGlobal's name, i.e. the value given to the Worker constructor. Primarily useful for debugging.
|
||||||
|
*/
|
||||||
|
readonly name: string;
|
||||||
onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
|
onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
|
||||||
|
onmessageerror: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
|
||||||
|
/**
|
||||||
|
* Aborts dedicatedWorkerGlobal.
|
||||||
|
*/
|
||||||
close(): void;
|
close(): void;
|
||||||
|
/**
|
||||||
|
* Clones message and transmits it to the Worker object associated with dedicatedWorkerGlobal. transfer can be passed as a list of objects that are to be transferred rather than cloned.
|
||||||
|
*/
|
||||||
postMessage(message: any, transfer: Transferable[]): void;
|
postMessage(message: any, transfer: Transferable[]): void;
|
||||||
postMessage(message: any, options?: PostMessageOptions): void;
|
postMessage(message: any, options?: PostMessageOptions): void;
|
||||||
addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
@ -1475,7 +1482,7 @@ interface EventTarget {
|
|||||||
*
|
*
|
||||||
* When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.
|
* When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.
|
||||||
*
|
*
|
||||||
* When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in §2.8 Observing event listeners.
|
* When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in § 2.8 Observing event listeners.
|
||||||
*
|
*
|
||||||
* When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.
|
* When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.
|
||||||
*
|
*
|
||||||
@ -1636,7 +1643,7 @@ interface GenericTransformStream {
|
|||||||
*/
|
*/
|
||||||
readonly readable: ReadableStream;
|
readonly readable: ReadableStream;
|
||||||
/**
|
/**
|
||||||
* Returns a writable stream which accepts BufferSource chunks and runs them through encoding's decoder before making them available to readable.
|
* Returns a writable stream which accepts [AllowShared] BufferSource chunks and runs them through encoding's decoder before making them available to readable.
|
||||||
*
|
*
|
||||||
* Typically this will be used via the pipeThrough() method on a ReadableStream source.
|
* Typically this will be used via the pipeThrough() method on a ReadableStream source.
|
||||||
*
|
*
|
||||||
@ -2178,15 +2185,6 @@ declare var ImageBitmap: {
|
|||||||
new(): ImageBitmap;
|
new(): ImageBitmap;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface ImageBitmapOptions {
|
|
||||||
colorSpaceConversion?: "none" | "default";
|
|
||||||
imageOrientation?: "none" | "flipY";
|
|
||||||
premultiplyAlpha?: "none" | "premultiply" | "default";
|
|
||||||
resizeHeight?: number;
|
|
||||||
resizeQuality?: "pixelated" | "low" | "medium" | "high";
|
|
||||||
resizeWidth?: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface ImageBitmapRenderingContext {
|
interface ImageBitmapRenderingContext {
|
||||||
/**
|
/**
|
||||||
* Returns the canvas element that the context is bound to.
|
* Returns the canvas element that the context is bound to.
|
||||||
@ -2222,7 +2220,7 @@ interface ImageData {
|
|||||||
declare var ImageData: {
|
declare var ImageData: {
|
||||||
prototype: ImageData;
|
prototype: ImageData;
|
||||||
new(width: number, height: number): ImageData;
|
new(width: number, height: number): ImageData;
|
||||||
new(array: Uint8ClampedArray, width: number, height: number): ImageData;
|
new(array: Uint8ClampedArray, width: number, height?: number): ImageData;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** This Channel Messaging API interface allows us to create a new message channel and send data through it via its two MessagePort properties. */
|
/** This Channel Messaging API interface allows us to create a new message channel and send data through it via its two MessagePort properties. */
|
||||||
@ -2318,10 +2316,6 @@ declare var NavigationPreloadManager: {
|
|||||||
new(): NavigationPreloadManager;
|
new(): NavigationPreloadManager;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface NavigatorBeacon {
|
|
||||||
sendBeacon(url: string, data?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null): boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface NavigatorConcurrentHardware {
|
interface NavigatorConcurrentHardware {
|
||||||
readonly hardwareConcurrency: number;
|
readonly hardwareConcurrency: number;
|
||||||
}
|
}
|
||||||
@ -2335,6 +2329,11 @@ interface NavigatorID {
|
|||||||
readonly userAgent: string;
|
readonly userAgent: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface NavigatorLanguage {
|
||||||
|
readonly language: string;
|
||||||
|
readonly languages: ReadonlyArray<string>;
|
||||||
|
}
|
||||||
|
|
||||||
interface NavigatorOnLine {
|
interface NavigatorOnLine {
|
||||||
readonly onLine: boolean;
|
readonly onLine: boolean;
|
||||||
}
|
}
|
||||||
@ -2472,7 +2471,7 @@ declare var OffscreenCanvas: {
|
|||||||
new(width: number, height: number): OffscreenCanvas;
|
new(width: number, height: number): OffscreenCanvas;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface OffscreenCanvasRenderingContext2D extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath {
|
interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {
|
||||||
readonly canvas: OffscreenCanvas;
|
readonly canvas: OffscreenCanvas;
|
||||||
commit(): void;
|
commit(): void;
|
||||||
}
|
}
|
||||||
@ -2715,7 +2714,7 @@ interface PushSubscriptionChangeEvent extends ExtendableEvent {
|
|||||||
|
|
||||||
declare var PushSubscriptionChangeEvent: {
|
declare var PushSubscriptionChangeEvent: {
|
||||||
prototype: PushSubscriptionChangeEvent;
|
prototype: PushSubscriptionChangeEvent;
|
||||||
new(type: string, eventInitDict?: PushSubscriptionChangeInit): PushSubscriptionChangeEvent;
|
new(type: string, eventInitDict?: PushSubscriptionChangeEventInit): PushSubscriptionChangeEvent;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface PushSubscriptionOptions {
|
interface PushSubscriptionOptions {
|
||||||
@ -2780,11 +2779,6 @@ interface ReadableStreamDefaultReader<R = any> {
|
|||||||
releaseLock(): void;
|
releaseLock(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ReadableStreamReadResult<T> {
|
|
||||||
done: boolean;
|
|
||||||
value: T;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface ReadableStreamReader<R = any> {
|
interface ReadableStreamReader<R = any> {
|
||||||
cancel(): Promise<void>;
|
cancel(): Promise<void>;
|
||||||
read(): Promise<ReadableStreamReadResult<R>>;
|
read(): Promise<ReadableStreamReadResult<R>>;
|
||||||
@ -2963,6 +2957,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
|
|||||||
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
|
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
|
||||||
onsync: ((this: ServiceWorkerGlobalScope, ev: SyncEvent) => any) | null;
|
onsync: ((this: ServiceWorkerGlobalScope, ev: SyncEvent) => any) | null;
|
||||||
readonly registration: ServiceWorkerRegistration;
|
readonly registration: ServiceWorkerRegistration;
|
||||||
|
readonly serviceWorker: ServiceWorker;
|
||||||
skipWaiting(): Promise<void>;
|
skipWaiting(): Promise<void>;
|
||||||
addEventListener<K extends keyof ServiceWorkerGlobalScopeEventMap>(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof ServiceWorkerGlobalScopeEventMap>(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
@ -3005,6 +3000,47 @@ declare var ServiceWorkerRegistration: {
|
|||||||
new(): ServiceWorkerRegistration;
|
new(): ServiceWorkerRegistration;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
interface SharedWorker extends EventTarget, AbstractWorker {
|
||||||
|
/**
|
||||||
|
* Returns sharedWorker's MessagePort object which can be used to communicate with the global environment.
|
||||||
|
*/
|
||||||
|
readonly port: MessagePort;
|
||||||
|
addEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: SharedWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
removeEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: SharedWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
||||||
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var SharedWorker: {
|
||||||
|
prototype: SharedWorker;
|
||||||
|
new(scriptURL: string, options?: string | WorkerOptions): SharedWorker;
|
||||||
|
};
|
||||||
|
|
||||||
|
interface SharedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
||||||
|
"connect": MessageEvent;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SharedWorkerGlobalScope extends WorkerGlobalScope {
|
||||||
|
/**
|
||||||
|
* Returns sharedWorkerGlobal's name, i.e. the value given to the SharedWorker constructor. Multiple SharedWorker objects can correspond to the same shared worker (and SharedWorkerGlobalScope), by reusing the same name.
|
||||||
|
*/
|
||||||
|
readonly name: string;
|
||||||
|
onconnect: ((this: SharedWorkerGlobalScope, ev: MessageEvent) => any) | null;
|
||||||
|
/**
|
||||||
|
* Aborts sharedWorkerGlobal.
|
||||||
|
*/
|
||||||
|
close(): void;
|
||||||
|
addEventListener<K extends keyof SharedWorkerGlobalScopeEventMap>(type: K, listener: (this: SharedWorkerGlobalScope, ev: SharedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
removeEventListener<K extends keyof SharedWorkerGlobalScopeEventMap>(type: K, listener: (this: SharedWorkerGlobalScope, ev: SharedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
||||||
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var SharedWorkerGlobalScope: {
|
||||||
|
prototype: SharedWorkerGlobalScope;
|
||||||
|
new(): SharedWorkerGlobalScope;
|
||||||
|
};
|
||||||
|
|
||||||
interface StorageManager {
|
interface StorageManager {
|
||||||
estimate(): Promise<StorageEstimate>;
|
estimate(): Promise<StorageEstimate>;
|
||||||
persisted(): Promise<boolean>;
|
persisted(): Promise<boolean>;
|
||||||
@ -3017,24 +3053,24 @@ declare var StorageManager: {
|
|||||||
|
|
||||||
/** This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto). */
|
/** This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto). */
|
||||||
interface SubtleCrypto {
|
interface SubtleCrypto {
|
||||||
decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
||||||
deriveBits(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike<ArrayBuffer>;
|
deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike<ArrayBuffer>;
|
||||||
deriveKey(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
|
deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
|
||||||
digest(algorithm: string | Algorithm, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
digest(algorithm: AlgorithmIdentifier, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
||||||
encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
encrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
||||||
exportKey(format: "jwk", key: CryptoKey): PromiseLike<JsonWebKey>;
|
exportKey(format: "jwk", key: CryptoKey): PromiseLike<JsonWebKey>;
|
||||||
exportKey(format: "raw" | "pkcs8" | "spki", key: CryptoKey): PromiseLike<ArrayBuffer>;
|
exportKey(format: "raw" | "pkcs8" | "spki", key: CryptoKey): PromiseLike<ArrayBuffer>;
|
||||||
exportKey(format: string, key: CryptoKey): PromiseLike<JsonWebKey | ArrayBuffer>;
|
exportKey(format: string, key: CryptoKey): PromiseLike<JsonWebKey | ArrayBuffer>;
|
||||||
generateKey(algorithm: string, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair | CryptoKey>;
|
generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKeyPair | CryptoKey>;
|
||||||
generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair>;
|
generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKeyPair>;
|
||||||
generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
|
generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
|
||||||
importKey(format: "jwk", keyData: JsonWebKey, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
|
importKey(format: "jwk", keyData: JsonWebKey, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
|
||||||
importKey(format: "raw" | "pkcs8" | "spki", keyData: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
|
importKey(format: "raw" | "pkcs8" | "spki", keyData: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
|
||||||
importKey(format: string, keyData: JsonWebKey | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
|
importKey(format: string, keyData: JsonWebKey | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
|
||||||
sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
sign(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
|
||||||
unwrapKey(format: string, wrappedKey: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, unwrappingKey: CryptoKey, unwrapAlgorithm: string | Algorithm, unwrappedKeyAlgorithm: string | Algorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
|
unwrapKey(format: "raw" | "pkcs8" | "spki" | "jwk" | string, wrappedKey: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
|
||||||
verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<boolean>;
|
verify(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<boolean>;
|
||||||
wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: string | Algorithm): PromiseLike<ArrayBuffer>;
|
wrapKey(format: "raw" | "pkcs8" | "spki" | "jwk" | string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams): PromiseLike<ArrayBuffer>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var SubtleCrypto: {
|
declare var SubtleCrypto: {
|
||||||
@ -3102,7 +3138,9 @@ interface TextDecoderCommon {
|
|||||||
readonly ignoreBOM: boolean;
|
readonly ignoreBOM: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TextDecoderStream extends TextDecoderCommon, GenericTransformStream {
|
interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
|
||||||
|
readonly readable: ReadableStream<string>;
|
||||||
|
readonly writable: WritableStream<BufferSource>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var TextDecoderStream: {
|
declare var TextDecoderStream: {
|
||||||
@ -3134,7 +3172,9 @@ interface TextEncoderCommon {
|
|||||||
readonly encoding: string;
|
readonly encoding: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TextEncoderStream extends TextEncoderCommon, GenericTransformStream {
|
interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
|
||||||
|
readonly readable: ReadableStream<Uint8Array>;
|
||||||
|
readonly writable: WritableStream<string>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var TextEncoderStream: {
|
declare var TextEncoderStream: {
|
||||||
@ -3222,6 +3262,7 @@ interface URL {
|
|||||||
host: string;
|
host: string;
|
||||||
hostname: string;
|
hostname: string;
|
||||||
href: string;
|
href: string;
|
||||||
|
toString(): string;
|
||||||
readonly origin: string;
|
readonly origin: string;
|
||||||
password: string;
|
password: string;
|
||||||
pathname: string;
|
pathname: string;
|
||||||
@ -3266,12 +3307,17 @@ interface URLSearchParams {
|
|||||||
*/
|
*/
|
||||||
set(name: string, value: string): void;
|
set(name: string, value: string): void;
|
||||||
sort(): void;
|
sort(): void;
|
||||||
|
/**
|
||||||
|
* Returns a string containing a query string suitable for use in a URL. Does not include the question mark.
|
||||||
|
*/
|
||||||
|
toString(): string;
|
||||||
forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void;
|
forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var URLSearchParams: {
|
declare var URLSearchParams: {
|
||||||
prototype: URLSearchParams;
|
prototype: URLSearchParams;
|
||||||
new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
|
new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
|
||||||
|
toString(): string;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface WEBGL_color_buffer_float {
|
interface WEBGL_color_buffer_float {
|
||||||
@ -3385,7 +3431,7 @@ interface WEBGL_lose_context {
|
|||||||
restoreContext(): void;
|
restoreContext(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WebGL2RenderingContext extends WebGLRenderingContextBase, WebGL2RenderingContextBase, WebGL2RenderingContextOverloads {
|
interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var WebGL2RenderingContext: {
|
declare var WebGL2RenderingContext: {
|
||||||
@ -5277,17 +5323,45 @@ interface WebSocketEventMap {
|
|||||||
|
|
||||||
/** Provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. */
|
/** Provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. */
|
||||||
interface WebSocket extends EventTarget {
|
interface WebSocket extends EventTarget {
|
||||||
|
/**
|
||||||
|
* Returns a string that indicates how binary data from the WebSocket object is exposed to scripts:
|
||||||
|
*
|
||||||
|
* Can be set, to change how binary data is returned. The default is "blob".
|
||||||
|
*/
|
||||||
binaryType: BinaryType;
|
binaryType: BinaryType;
|
||||||
|
/**
|
||||||
|
* Returns the number of bytes of application data (UTF-8 text and binary data) that have been queued using send() but not yet been transmitted to the network.
|
||||||
|
*
|
||||||
|
* If the WebSocket connection is closed, this attribute's value will only increase with each call to the send() method. (The number does not reset to zero once the connection closes.)
|
||||||
|
*/
|
||||||
readonly bufferedAmount: number;
|
readonly bufferedAmount: number;
|
||||||
|
/**
|
||||||
|
* Returns the extensions selected by the server, if any.
|
||||||
|
*/
|
||||||
readonly extensions: string;
|
readonly extensions: string;
|
||||||
onclose: ((this: WebSocket, ev: CloseEvent) => any) | null;
|
onclose: ((this: WebSocket, ev: CloseEvent) => any) | null;
|
||||||
onerror: ((this: WebSocket, ev: Event) => any) | null;
|
onerror: ((this: WebSocket, ev: Event) => any) | null;
|
||||||
onmessage: ((this: WebSocket, ev: MessageEvent) => any) | null;
|
onmessage: ((this: WebSocket, ev: MessageEvent) => any) | null;
|
||||||
onopen: ((this: WebSocket, ev: Event) => any) | null;
|
onopen: ((this: WebSocket, ev: Event) => any) | null;
|
||||||
|
/**
|
||||||
|
* Returns the subprotocol selected by the server, if any. It can be used in conjunction with the array form of the constructor's second argument to perform subprotocol negotiation.
|
||||||
|
*/
|
||||||
readonly protocol: string;
|
readonly protocol: string;
|
||||||
|
/**
|
||||||
|
* Returns the state of the WebSocket object's connection. It can have the values described below.
|
||||||
|
*/
|
||||||
readonly readyState: number;
|
readonly readyState: number;
|
||||||
|
/**
|
||||||
|
* Returns the URL that was used to establish the WebSocket connection.
|
||||||
|
*/
|
||||||
readonly url: string;
|
readonly url: string;
|
||||||
|
/**
|
||||||
|
* Closes the WebSocket connection, optionally using code as the the WebSocket connection close code and reason as the the WebSocket connection close reason.
|
||||||
|
*/
|
||||||
close(code?: number, reason?: string): void;
|
close(code?: number, reason?: string): void;
|
||||||
|
/**
|
||||||
|
* Transmits data using the WebSocket connection. data can be a string, a Blob, an ArrayBuffer, or an ArrayBufferView.
|
||||||
|
*/
|
||||||
send(data: string | ArrayBufferLike | Blob | ArrayBufferView): void;
|
send(data: string | ArrayBufferLike | Blob | ArrayBufferView): void;
|
||||||
readonly CLOSED: number;
|
readonly CLOSED: number;
|
||||||
readonly CLOSING: number;
|
readonly CLOSING: number;
|
||||||
@ -5308,11 +5382,6 @@ declare var WebSocket: {
|
|||||||
readonly OPEN: number;
|
readonly OPEN: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface WindowBase64 {
|
|
||||||
atob(encodedString: string): string;
|
|
||||||
btoa(rawString: string): string;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** This ServiceWorker API interface represents the scope of a service worker client that is a document in a browser context, controlled by an active worker. The service worker client independently selects and uses a service worker for its own loading and sub-resources. */
|
/** This ServiceWorker API interface represents the scope of a service worker client that is a document in a browser context, controlled by an active worker. The service worker client independently selects and uses a service worker for its own loading and sub-resources. */
|
||||||
interface WindowClient extends Client {
|
interface WindowClient extends Client {
|
||||||
readonly ancestorOrigins: ReadonlyArray<string>;
|
readonly ancestorOrigins: ReadonlyArray<string>;
|
||||||
@ -5327,37 +5396,42 @@ declare var WindowClient: {
|
|||||||
new(): WindowClient;
|
new(): WindowClient;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface WindowConsole {
|
|
||||||
readonly console: Console;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface WindowOrWorkerGlobalScope {
|
interface WindowOrWorkerGlobalScope {
|
||||||
readonly caches: CacheStorage;
|
readonly caches: CacheStorage;
|
||||||
readonly crypto: Crypto;
|
readonly crypto: Crypto;
|
||||||
readonly indexedDB: IDBFactory;
|
readonly indexedDB: IDBFactory;
|
||||||
|
readonly isSecureContext: boolean;
|
||||||
readonly origin: string;
|
readonly origin: string;
|
||||||
readonly performance: Performance;
|
readonly performance: Performance;
|
||||||
atob(data: string): string;
|
atob(data: string): string;
|
||||||
btoa(data: string): string;
|
btoa(data: string): string;
|
||||||
clearInterval(handle?: number): void;
|
clearInterval(handle?: number): void;
|
||||||
clearTimeout(handle?: number): void;
|
clearTimeout(handle?: number): void;
|
||||||
createImageBitmap(image: ImageBitmapSource): Promise<ImageBitmap>;
|
createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
|
||||||
createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number): Promise<ImageBitmap>;
|
createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
|
||||||
fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;
|
fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;
|
||||||
queueMicrotask(callback: Function): void;
|
queueMicrotask(callback: VoidFunction): void;
|
||||||
setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
||||||
setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WorkerEventMap extends AbstractWorkerEventMap {
|
interface WorkerEventMap extends AbstractWorkerEventMap {
|
||||||
"message": MessageEvent;
|
"message": MessageEvent;
|
||||||
|
"messageerror": MessageEvent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** This Web Workers API interface represents a background task that can be easily created and can send messages back to its creator. Creating a worker is as simple as calling the Worker() constructor and specifying a script to be run in the worker thread. */
|
/** This Web Workers API interface represents a background task that can be easily created and can send messages back to its creator. Creating a worker is as simple as calling the Worker() constructor and specifying a script to be run in the worker thread. */
|
||||||
interface Worker extends EventTarget, AbstractWorker {
|
interface Worker extends EventTarget, AbstractWorker {
|
||||||
onmessage: ((this: Worker, ev: MessageEvent) => any) | null;
|
onmessage: ((this: Worker, ev: MessageEvent) => any) | null;
|
||||||
|
onmessageerror: ((this: Worker, ev: MessageEvent) => any) | null;
|
||||||
|
/**
|
||||||
|
* Clones message and transmits it to worker's global environment. transfer can be passed as a list of objects that are to be transferred rather than cloned.
|
||||||
|
*/
|
||||||
postMessage(message: any, transfer: Transferable[]): void;
|
postMessage(message: any, transfer: Transferable[]): void;
|
||||||
postMessage(message: any, options?: PostMessageOptions): void;
|
postMessage(message: any, options?: PostMessageOptions): void;
|
||||||
|
/**
|
||||||
|
* Aborts worker's associated global environment.
|
||||||
|
*/
|
||||||
terminate(): void;
|
terminate(): void;
|
||||||
addEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
@ -5372,17 +5446,34 @@ declare var Worker: {
|
|||||||
|
|
||||||
interface WorkerGlobalScopeEventMap {
|
interface WorkerGlobalScopeEventMap {
|
||||||
"error": ErrorEvent;
|
"error": ErrorEvent;
|
||||||
|
"languagechange": Event;
|
||||||
|
"offline": Event;
|
||||||
|
"online": Event;
|
||||||
|
"rejectionhandled": PromiseRejectionEvent;
|
||||||
|
"unhandledrejection": PromiseRejectionEvent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** This Web Workers API interface is an interface representing the scope of any worker. Workers have no browsing context; this scope contains the information usually conveyed by Window objects — in this case event handlers, the console or the associated WorkerNavigator object. Each WorkerGlobalScope has its own event loop. */
|
/** This Web Workers API interface is an interface representing the scope of any worker. Workers have no browsing context; this scope contains the information usually conveyed by Window objects — in this case event handlers, the console or the associated WorkerNavigator object. Each WorkerGlobalScope has its own event loop. */
|
||||||
interface WorkerGlobalScope extends EventTarget, WorkerUtils, WindowConsole, WindowOrWorkerGlobalScope {
|
interface WorkerGlobalScope extends EventTarget, WindowOrWorkerGlobalScope {
|
||||||
readonly caches: CacheStorage;
|
/**
|
||||||
readonly isSecureContext: boolean;
|
* Returns workerGlobal's WorkerLocation object.
|
||||||
|
*/
|
||||||
readonly location: WorkerLocation;
|
readonly location: WorkerLocation;
|
||||||
|
readonly navigator: WorkerNavigator;
|
||||||
onerror: ((this: WorkerGlobalScope, ev: ErrorEvent) => any) | null;
|
onerror: ((this: WorkerGlobalScope, ev: ErrorEvent) => any) | null;
|
||||||
readonly performance: Performance;
|
onlanguagechange: ((this: WorkerGlobalScope, ev: Event) => any) | null;
|
||||||
|
onoffline: ((this: WorkerGlobalScope, ev: Event) => any) | null;
|
||||||
|
ononline: ((this: WorkerGlobalScope, ev: Event) => any) | null;
|
||||||
|
onrejectionhandled: ((this: WorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
|
||||||
|
onunhandledrejection: ((this: WorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
|
||||||
|
/**
|
||||||
|
* Returns workerGlobal.
|
||||||
|
*/
|
||||||
readonly self: WorkerGlobalScope & typeof globalThis;
|
readonly self: WorkerGlobalScope & typeof globalThis;
|
||||||
msWriteProfilerMark(profilerMarkName: string): void;
|
/**
|
||||||
|
* Fetches each URL in urls, executes them one-by-one in the order they are passed, and then returns (or throws if something went amiss).
|
||||||
|
*/
|
||||||
|
importScripts(...urls: string[]): void;
|
||||||
addEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
removeEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
removeEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
||||||
@ -5400,12 +5491,12 @@ interface WorkerLocation {
|
|||||||
readonly host: string;
|
readonly host: string;
|
||||||
readonly hostname: string;
|
readonly hostname: string;
|
||||||
readonly href: string;
|
readonly href: string;
|
||||||
|
toString(): string;
|
||||||
readonly origin: string;
|
readonly origin: string;
|
||||||
readonly pathname: string;
|
readonly pathname: string;
|
||||||
readonly port: string;
|
readonly port: string;
|
||||||
readonly protocol: string;
|
readonly protocol: string;
|
||||||
readonly search: string;
|
readonly search: string;
|
||||||
toString(): string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var WorkerLocation: {
|
declare var WorkerLocation: {
|
||||||
@ -5414,7 +5505,7 @@ declare var WorkerLocation: {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/** A subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator. */
|
/** A subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator. */
|
||||||
interface WorkerNavigator extends NavigatorID, NavigatorOnLine, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorStorage {
|
interface WorkerNavigator extends NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorStorage {
|
||||||
readonly permissions: Permissions;
|
readonly permissions: Permissions;
|
||||||
readonly serviceWorker: ServiceWorkerContainer;
|
readonly serviceWorker: ServiceWorkerContainer;
|
||||||
}
|
}
|
||||||
@ -5424,13 +5515,6 @@ declare var WorkerNavigator: {
|
|||||||
new(): WorkerNavigator;
|
new(): WorkerNavigator;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface WorkerUtils extends WindowBase64 {
|
|
||||||
readonly indexedDB: IDBFactory;
|
|
||||||
readonly msIndexedDB: IDBFactory;
|
|
||||||
readonly navigator: WorkerNavigator;
|
|
||||||
importScripts(...urls: string[]): void;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing. */
|
/** This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing. */
|
||||||
interface WritableStream<W = any> {
|
interface WritableStream<W = any> {
|
||||||
readonly locked: boolean;
|
readonly locked: boolean;
|
||||||
@ -5612,6 +5696,33 @@ declare var XMLHttpRequestUpload: {
|
|||||||
|
|
||||||
declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
|
declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
|
||||||
|
|
||||||
|
interface Console {
|
||||||
|
memory: any;
|
||||||
|
assert(condition?: boolean, ...data: any[]): void;
|
||||||
|
clear(): void;
|
||||||
|
count(label?: string): void;
|
||||||
|
countReset(label?: string): void;
|
||||||
|
debug(...data: any[]): void;
|
||||||
|
dir(item?: any, options?: any): void;
|
||||||
|
dirxml(...data: any[]): void;
|
||||||
|
error(...data: any[]): void;
|
||||||
|
exception(message?: string, ...optionalParams: any[]): void;
|
||||||
|
group(...data: any[]): void;
|
||||||
|
groupCollapsed(...data: any[]): void;
|
||||||
|
groupEnd(): void;
|
||||||
|
info(...data: any[]): void;
|
||||||
|
log(...data: any[]): void;
|
||||||
|
table(tabularData?: any, properties?: string[]): void;
|
||||||
|
time(label?: string): void;
|
||||||
|
timeEnd(label?: string): void;
|
||||||
|
timeLog(label?: string, ...data: any[]): void;
|
||||||
|
timeStamp(label?: string): void;
|
||||||
|
trace(...data: any[]): void;
|
||||||
|
warn(...data: any[]): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var console: Console;
|
||||||
|
|
||||||
declare namespace WebAssembly {
|
declare namespace WebAssembly {
|
||||||
interface Global {
|
interface Global {
|
||||||
value: any;
|
value: any;
|
||||||
@ -5620,16 +5731,16 @@ declare namespace WebAssembly {
|
|||||||
|
|
||||||
var Global: {
|
var Global: {
|
||||||
prototype: Global;
|
prototype: Global;
|
||||||
new(descriptor: GlobalDescriptor, value?: any): Global;
|
new(descriptor: GlobalDescriptor, v?: any): Global;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface Instance {
|
interface Instance {
|
||||||
readonly exports: any;
|
readonly exports: Exports;
|
||||||
}
|
}
|
||||||
|
|
||||||
var Instance: {
|
var Instance: {
|
||||||
prototype: Instance;
|
prototype: Instance;
|
||||||
new(module: Module, importObject?: any): Instance;
|
new(module: Module, importObject?: Imports): Instance;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface Memory {
|
interface Memory {
|
||||||
@ -5648,9 +5759,9 @@ declare namespace WebAssembly {
|
|||||||
var Module: {
|
var Module: {
|
||||||
prototype: Module;
|
prototype: Module;
|
||||||
new(bytes: BufferSource): Module;
|
new(bytes: BufferSource): Module;
|
||||||
customSections(module: Module, sectionName: string): ArrayBuffer[];
|
customSections(moduleObject: Module, sectionName: string): ArrayBuffer[];
|
||||||
exports(module: Module): ModuleExportDescriptor[];
|
exports(moduleObject: Module): ModuleExportDescriptor[];
|
||||||
imports(module: Module): ModuleImportDescriptor[];
|
imports(moduleObject: Module): ModuleImportDescriptor[];
|
||||||
};
|
};
|
||||||
|
|
||||||
interface Table {
|
interface Table {
|
||||||
@ -5667,7 +5778,7 @@ declare namespace WebAssembly {
|
|||||||
|
|
||||||
interface GlobalDescriptor {
|
interface GlobalDescriptor {
|
||||||
mutable?: boolean;
|
mutable?: boolean;
|
||||||
value: string;
|
value: ValueType;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface MemoryDescriptor {
|
interface MemoryDescriptor {
|
||||||
@ -5697,22 +5808,30 @@ declare namespace WebAssembly {
|
|||||||
module: Module;
|
module: Module;
|
||||||
}
|
}
|
||||||
|
|
||||||
type ImportExportKind = "function" | "table" | "memory" | "global";
|
type ImportExportKind = "function" | "global" | "memory" | "table";
|
||||||
type TableKind = "anyfunc";
|
type TableKind = "anyfunc";
|
||||||
|
type ValueType = "f32" | "f64" | "i32" | "i64";
|
||||||
|
type ExportValue = Function | Global | Memory | Table;
|
||||||
|
type Exports = Record<string, ExportValue>;
|
||||||
|
type ImportValue = ExportValue | number;
|
||||||
|
type ModuleImports = Record<string, ImportValue>;
|
||||||
|
type Imports = Record<string, ModuleImports>;
|
||||||
function compile(bytes: BufferSource): Promise<Module>;
|
function compile(bytes: BufferSource): Promise<Module>;
|
||||||
function instantiate(bytes: BufferSource, importObject?: any): Promise<WebAssemblyInstantiatedSource>;
|
function compileStreaming(source: Response | Promise<Response>): Promise<Module>;
|
||||||
function instantiate(moduleObject: Module, importObject?: any): Promise<Instance>;
|
function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
||||||
|
function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;
|
||||||
|
function instantiateStreaming(response: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
|
||||||
function validate(bytes: BufferSource): boolean;
|
function validate(bytes: BufferSource): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface EventHandlerNonNull {
|
|
||||||
(event: Event): any;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface FrameRequestCallback {
|
interface FrameRequestCallback {
|
||||||
(time: number): void;
|
(time: number): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface OnErrorEventHandlerNonNull {
|
||||||
|
(event: Event | string, source?: string, lineno?: number, colno?: number, error?: Error): any;
|
||||||
|
}
|
||||||
|
|
||||||
interface PerformanceObserverCallback {
|
interface PerformanceObserverCallback {
|
||||||
(entries: PerformanceObserverEntryList, observer: PerformanceObserver): void;
|
(entries: PerformanceObserverEntryList, observer: PerformanceObserver): void;
|
||||||
}
|
}
|
||||||
@ -5741,6 +5860,10 @@ interface TransformStreamDefaultControllerTransformCallback<I, O> {
|
|||||||
(chunk: I, controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;
|
(chunk: I, controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface VoidFunction {
|
||||||
|
(): void;
|
||||||
|
}
|
||||||
|
|
||||||
interface WritableStreamDefaultControllerCloseCallback {
|
interface WritableStreamDefaultControllerCloseCallback {
|
||||||
(): void | PromiseLike<void>;
|
(): void | PromiseLike<void>;
|
||||||
}
|
}
|
||||||
@ -5757,45 +5880,62 @@ interface WritableStreamErrorCallback {
|
|||||||
(reason: any): void | PromiseLike<void>;
|
(reason: any): void | PromiseLike<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns dedicatedWorkerGlobal's name, i.e. the value given to the Worker constructor. Primarily useful for debugging.
|
||||||
|
*/
|
||||||
|
declare var name: string;
|
||||||
declare var onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
|
declare var onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
|
||||||
|
declare var onmessageerror: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
|
||||||
|
/**
|
||||||
|
* Aborts dedicatedWorkerGlobal.
|
||||||
|
*/
|
||||||
declare function close(): void;
|
declare function close(): void;
|
||||||
|
/**
|
||||||
|
* Clones message and transmits it to the Worker object associated with dedicatedWorkerGlobal. transfer can be passed as a list of objects that are to be transferred rather than cloned.
|
||||||
|
*/
|
||||||
declare function postMessage(message: any, transfer: Transferable[]): void;
|
declare function postMessage(message: any, transfer: Transferable[]): void;
|
||||||
declare function postMessage(message: any, options?: PostMessageOptions): void;
|
declare function postMessage(message: any, options?: PostMessageOptions): void;
|
||||||
/**
|
/**
|
||||||
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
|
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
|
||||||
*/
|
*/
|
||||||
declare function dispatchEvent(event: Event): boolean;
|
declare function dispatchEvent(event: Event): boolean;
|
||||||
declare var caches: CacheStorage;
|
/**
|
||||||
declare var isSecureContext: boolean;
|
* Returns workerGlobal's WorkerLocation object.
|
||||||
|
*/
|
||||||
declare var location: WorkerLocation;
|
declare var location: WorkerLocation;
|
||||||
|
declare var navigator: WorkerNavigator;
|
||||||
declare var onerror: ((this: DedicatedWorkerGlobalScope, ev: ErrorEvent) => any) | null;
|
declare var onerror: ((this: DedicatedWorkerGlobalScope, ev: ErrorEvent) => any) | null;
|
||||||
declare var performance: Performance;
|
declare var onlanguagechange: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;
|
||||||
|
declare var onoffline: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;
|
||||||
|
declare var ononline: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;
|
||||||
|
declare var onrejectionhandled: ((this: DedicatedWorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
|
||||||
|
declare var onunhandledrejection: ((this: DedicatedWorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
|
||||||
|
/**
|
||||||
|
* Returns workerGlobal.
|
||||||
|
*/
|
||||||
declare var self: WorkerGlobalScope & typeof globalThis;
|
declare var self: WorkerGlobalScope & typeof globalThis;
|
||||||
declare function msWriteProfilerMark(profilerMarkName: string): void;
|
/**
|
||||||
|
* Fetches each URL in urls, executes them one-by-one in the order they are passed, and then returns (or throws if something went amiss).
|
||||||
|
*/
|
||||||
|
declare function importScripts(...urls: string[]): void;
|
||||||
/**
|
/**
|
||||||
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
|
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
|
||||||
*/
|
*/
|
||||||
declare function dispatchEvent(event: Event): boolean;
|
declare function dispatchEvent(event: Event): boolean;
|
||||||
declare var indexedDB: IDBFactory;
|
|
||||||
declare var msIndexedDB: IDBFactory;
|
|
||||||
declare var navigator: WorkerNavigator;
|
|
||||||
declare function importScripts(...urls: string[]): void;
|
|
||||||
declare function atob(encodedString: string): string;
|
|
||||||
declare function btoa(rawString: string): string;
|
|
||||||
declare var console: Console;
|
|
||||||
declare var caches: CacheStorage;
|
declare var caches: CacheStorage;
|
||||||
declare var crypto: Crypto;
|
declare var crypto: Crypto;
|
||||||
declare var indexedDB: IDBFactory;
|
declare var indexedDB: IDBFactory;
|
||||||
|
declare var isSecureContext: boolean;
|
||||||
declare var origin: string;
|
declare var origin: string;
|
||||||
declare var performance: Performance;
|
declare var performance: Performance;
|
||||||
declare function atob(data: string): string;
|
declare function atob(data: string): string;
|
||||||
declare function btoa(data: string): string;
|
declare function btoa(data: string): string;
|
||||||
declare function clearInterval(handle?: number): void;
|
declare function clearInterval(handle?: number): void;
|
||||||
declare function clearTimeout(handle?: number): void;
|
declare function clearTimeout(handle?: number): void;
|
||||||
declare function createImageBitmap(image: ImageBitmapSource): Promise<ImageBitmap>;
|
declare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
|
||||||
declare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number): Promise<ImageBitmap>;
|
declare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
|
||||||
declare function fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;
|
declare function fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;
|
||||||
declare function queueMicrotask(callback: Function): void;
|
declare function queueMicrotask(callback: VoidFunction): void;
|
||||||
declare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
declare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
||||||
declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
|
||||||
declare function cancelAnimationFrame(handle: number): void;
|
declare function cancelAnimationFrame(handle: number): void;
|
||||||
@ -5813,9 +5953,11 @@ type CanvasImageSource = ImageBitmap | OffscreenCanvas;
|
|||||||
type OffscreenRenderingContext = OffscreenCanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
|
type OffscreenRenderingContext = OffscreenCanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
|
||||||
type MessageEventSource = MessagePort | ServiceWorker;
|
type MessageEventSource = MessagePort | ServiceWorker;
|
||||||
type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
|
type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
|
||||||
|
type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
|
||||||
type TimerHandler = string | Function;
|
type TimerHandler = string | Function;
|
||||||
type PerformanceEntryList = PerformanceEntry[];
|
type PerformanceEntryList = PerformanceEntry[];
|
||||||
type PushMessageDataInit = BufferSource | string;
|
type PushMessageDataInit = BufferSource | string;
|
||||||
|
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
|
||||||
type VibratePattern = number | number[];
|
type VibratePattern = number | number[];
|
||||||
type AlgorithmIdentifier = string | Algorithm;
|
type AlgorithmIdentifier = string | Algorithm;
|
||||||
type HashAlgorithmIdentifier = AlgorithmIdentifier;
|
type HashAlgorithmIdentifier = AlgorithmIdentifier;
|
||||||
@ -5841,41 +5983,45 @@ type BufferSource = ArrayBufferView | ArrayBuffer;
|
|||||||
type DOMTimeStamp = number;
|
type DOMTimeStamp = number;
|
||||||
type FormDataEntryValue = File | string;
|
type FormDataEntryValue = File | string;
|
||||||
type IDBValidKey = number | string | Date | BufferSource | IDBArrayKey;
|
type IDBValidKey = number | string | Date | BufferSource | IDBArrayKey;
|
||||||
type Transferable = ArrayBuffer | MessagePort | ImageBitmap;
|
type Transferable = ArrayBuffer | MessagePort | ImageBitmap | OffscreenCanvas;
|
||||||
type BinaryType = "blob" | "arraybuffer";
|
type BinaryType = "arraybuffer" | "blob";
|
||||||
type CanvasDirection = "ltr" | "rtl" | "inherit";
|
type CanvasDirection = "inherit" | "ltr" | "rtl";
|
||||||
type CanvasFillRule = "nonzero" | "evenodd";
|
type CanvasFillRule = "evenodd" | "nonzero";
|
||||||
type CanvasLineCap = "butt" | "round" | "square";
|
type CanvasLineCap = "butt" | "round" | "square";
|
||||||
type CanvasLineJoin = "round" | "bevel" | "miter";
|
type CanvasLineJoin = "bevel" | "miter" | "round";
|
||||||
type CanvasTextAlign = "start" | "end" | "left" | "right" | "center";
|
type CanvasTextAlign = "center" | "end" | "left" | "right" | "start";
|
||||||
type CanvasTextBaseline = "top" | "hanging" | "middle" | "alphabetic" | "ideographic" | "bottom";
|
type CanvasTextBaseline = "alphabetic" | "bottom" | "hanging" | "ideographic" | "middle" | "top";
|
||||||
type ClientTypes = "window" | "worker" | "sharedworker" | "all";
|
type ClientTypes = "all" | "sharedworker" | "window" | "worker";
|
||||||
type EndingType = "transparent" | "native";
|
type ColorSpaceConversion = "default" | "none";
|
||||||
type FrameType = "auxiliary" | "top-level" | "nested" | "none";
|
type EndingType = "native" | "transparent";
|
||||||
|
type FrameType = "auxiliary" | "nested" | "none" | "top-level";
|
||||||
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
|
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
|
||||||
type IDBRequestReadyState = "pending" | "done";
|
type IDBRequestReadyState = "done" | "pending";
|
||||||
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
|
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
|
||||||
type ImageSmoothingQuality = "low" | "medium" | "high";
|
type ImageOrientation = "flipY" | "none";
|
||||||
type KeyFormat = "raw" | "spki" | "pkcs8" | "jwk";
|
type ImageSmoothingQuality = "high" | "low" | "medium";
|
||||||
type KeyType = "public" | "private" | "secret";
|
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
|
||||||
type KeyUsage = "encrypt" | "decrypt" | "sign" | "verify" | "deriveKey" | "deriveBits" | "wrapKey" | "unwrapKey";
|
type KeyType = "private" | "public" | "secret";
|
||||||
|
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
|
||||||
type NotificationDirection = "auto" | "ltr" | "rtl";
|
type NotificationDirection = "auto" | "ltr" | "rtl";
|
||||||
type NotificationPermission = "default" | "denied" | "granted";
|
type NotificationPermission = "default" | "denied" | "granted";
|
||||||
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2";
|
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2";
|
||||||
type PermissionName = "geolocation" | "notifications" | "push" | "midi" | "camera" | "microphone" | "speaker" | "device-info" | "background-sync" | "bluetooth" | "persistent-storage" | "ambient-light-sensor" | "accelerometer" | "gyroscope" | "magnetometer" | "clipboard";
|
type PermissionName = "accelerometer" | "ambient-light-sensor" | "background-sync" | "bluetooth" | "camera" | "clipboard" | "device-info" | "geolocation" | "gyroscope" | "magnetometer" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "speaker";
|
||||||
type PermissionState = "granted" | "denied" | "prompt";
|
type PermissionState = "denied" | "granted" | "prompt";
|
||||||
type PushEncryptionKeyName = "p256dh" | "auth";
|
type PremultiplyAlpha = "default" | "none" | "premultiply";
|
||||||
|
type PushEncryptionKeyName = "auth" | "p256dh";
|
||||||
type PushPermissionState = "denied" | "granted" | "prompt";
|
type PushPermissionState = "denied" | "granted" | "prompt";
|
||||||
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "same-origin" | "origin" | "strict-origin" | "origin-when-cross-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
||||||
type RequestCache = "default" | "no-store" | "reload" | "no-cache" | "force-cache" | "only-if-cached";
|
type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload";
|
||||||
type RequestCredentials = "omit" | "same-origin" | "include";
|
type RequestCredentials = "include" | "omit" | "same-origin";
|
||||||
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
|
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
|
||||||
type RequestMode = "navigate" | "same-origin" | "no-cors" | "cors";
|
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
|
||||||
type RequestRedirect = "follow" | "error" | "manual";
|
type RequestRedirect = "error" | "follow" | "manual";
|
||||||
|
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
|
||||||
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
|
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
|
||||||
type ServiceWorkerState = "installing" | "installed" | "activating" | "activated" | "redundant";
|
type ServiceWorkerState = "activated" | "activating" | "installed" | "installing" | "parsed" | "redundant";
|
||||||
type ServiceWorkerUpdateViaCache = "imports" | "all" | "none";
|
type ServiceWorkerUpdateViaCache = "all" | "imports" | "none";
|
||||||
type VisibilityState = "hidden" | "visible" | "prerender";
|
type VisibilityState = "hidden" | "visible";
|
||||||
type WebGLPowerPreference = "default" | "low-power" | "high-performance";
|
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
|
||||||
type WorkerType = "classic" | "module";
|
type WorkerType = "classic" | "module";
|
||||||
type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";
|
type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";
|
||||||
|
26
node_modules/typescript/lib/lib.webworker.importscripts.d.ts
generated
vendored
26
node_modules/typescript/lib/lib.webworker.importscripts.d.ts
generated
vendored
@ -1,26 +1,26 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
/// WorkerGlobalScope APIs
|
/// WorkerGlobalScope APIs
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
// These are only available in a Web Worker
|
// These are only available in a Web Worker
|
||||||
declare function importScripts(...urls: string[]): void;
|
declare function importScripts(...urls: string[]): void;
|
||||||
|
480
node_modules/typescript/lib/pl/diagnosticMessages.generated.json
generated
vendored
480
node_modules/typescript/lib/pl/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
174
node_modules/typescript/lib/protocol.d.ts
generated
vendored
174
node_modules/typescript/lib/protocol.d.ts
generated
vendored
@ -64,7 +64,10 @@ declare namespace ts.server.protocol {
|
|||||||
OrganizeImports = "organizeImports",
|
OrganizeImports = "organizeImports",
|
||||||
GetEditsForFileRename = "getEditsForFileRename",
|
GetEditsForFileRename = "getEditsForFileRename",
|
||||||
ConfigurePlugin = "configurePlugin",
|
ConfigurePlugin = "configurePlugin",
|
||||||
SelectionRange = "selectionRange"
|
SelectionRange = "selectionRange",
|
||||||
|
PrepareCallHierarchy = "prepareCallHierarchy",
|
||||||
|
ProvideCallHierarchyIncomingCalls = "provideCallHierarchyIncomingCalls",
|
||||||
|
ProvideCallHierarchyOutgoingCalls = "provideCallHierarchyOutgoingCalls"
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* A TypeScript Server message
|
* A TypeScript Server message
|
||||||
@ -143,6 +146,16 @@ declare namespace ts.server.protocol {
|
|||||||
* Contains extra information that plugin can include to be passed on
|
* Contains extra information that plugin can include to be passed on
|
||||||
*/
|
*/
|
||||||
metadata?: unknown;
|
metadata?: unknown;
|
||||||
|
/**
|
||||||
|
* Exposes information about the performance of this request-response pair.
|
||||||
|
*/
|
||||||
|
performanceData?: PerformanceData;
|
||||||
|
}
|
||||||
|
interface PerformanceData {
|
||||||
|
/**
|
||||||
|
* Time spent updating the program graph, in milliseconds.
|
||||||
|
*/
|
||||||
|
updateGraphDurationMs?: number;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Arguments for FileRequest messages.
|
* Arguments for FileRequest messages.
|
||||||
@ -467,7 +480,7 @@ declare namespace ts.server.protocol {
|
|||||||
scope: OrganizeImportsScope;
|
scope: OrganizeImportsScope;
|
||||||
}
|
}
|
||||||
interface OrganizeImportsResponse extends Response {
|
interface OrganizeImportsResponse extends Response {
|
||||||
body: ReadonlyArray<FileCodeEdits>;
|
body: readonly FileCodeEdits[];
|
||||||
}
|
}
|
||||||
interface GetEditsForFileRenameRequest extends Request {
|
interface GetEditsForFileRenameRequest extends Request {
|
||||||
command: CommandTypes.GetEditsForFileRename;
|
command: CommandTypes.GetEditsForFileRename;
|
||||||
@ -479,7 +492,7 @@ declare namespace ts.server.protocol {
|
|||||||
readonly newFilePath: string;
|
readonly newFilePath: string;
|
||||||
}
|
}
|
||||||
interface GetEditsForFileRenameResponse extends Response {
|
interface GetEditsForFileRenameResponse extends Response {
|
||||||
body: ReadonlyArray<FileCodeEdits>;
|
body: readonly FileCodeEdits[];
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Request for the available codefixes at a specific position.
|
* Request for the available codefixes at a specific position.
|
||||||
@ -526,7 +539,7 @@ declare namespace ts.server.protocol {
|
|||||||
/**
|
/**
|
||||||
* Errorcodes we want to get the fixes for.
|
* Errorcodes we want to get the fixes for.
|
||||||
*/
|
*/
|
||||||
errorCodes: ReadonlyArray<number>;
|
errorCodes: readonly number[];
|
||||||
}
|
}
|
||||||
interface GetCombinedCodeFixRequestArgs {
|
interface GetCombinedCodeFixRequestArgs {
|
||||||
scope: GetCombinedCodeFixScope;
|
scope: GetCombinedCodeFixScope;
|
||||||
@ -643,7 +656,7 @@ declare namespace ts.server.protocol {
|
|||||||
interface FileSpanWithContext extends FileSpan, TextSpanWithContext {
|
interface FileSpanWithContext extends FileSpan, TextSpanWithContext {
|
||||||
}
|
}
|
||||||
interface DefinitionInfoAndBoundSpan {
|
interface DefinitionInfoAndBoundSpan {
|
||||||
definitions: ReadonlyArray<FileSpanWithContext>;
|
definitions: readonly FileSpanWithContext[];
|
||||||
textSpan: TextSpan;
|
textSpan: TextSpan;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
@ -652,9 +665,11 @@ declare namespace ts.server.protocol {
|
|||||||
interface DefinitionResponse extends Response {
|
interface DefinitionResponse extends Response {
|
||||||
body?: FileSpanWithContext[];
|
body?: FileSpanWithContext[];
|
||||||
}
|
}
|
||||||
interface DefinitionInfoAndBoundSpanReponse extends Response {
|
interface DefinitionInfoAndBoundSpanResponse extends Response {
|
||||||
body?: DefinitionInfoAndBoundSpan;
|
body?: DefinitionInfoAndBoundSpan;
|
||||||
}
|
}
|
||||||
|
/** @deprecated Use `DefinitionInfoAndBoundSpanResponse` instead. */
|
||||||
|
type DefinitionInfoAndBoundSpanReponse = DefinitionInfoAndBoundSpanResponse;
|
||||||
/**
|
/**
|
||||||
* Definition response message. Gives text range for definition.
|
* Definition response message. Gives text range for definition.
|
||||||
*/
|
*/
|
||||||
@ -781,7 +796,7 @@ declare namespace ts.server.protocol {
|
|||||||
/**
|
/**
|
||||||
* The file locations referencing the symbol.
|
* The file locations referencing the symbol.
|
||||||
*/
|
*/
|
||||||
refs: ReadonlyArray<ReferencesResponseItem>;
|
refs: readonly ReferencesResponseItem[];
|
||||||
/**
|
/**
|
||||||
* The name of the symbol.
|
* The name of the symbol.
|
||||||
*/
|
*/
|
||||||
@ -885,7 +900,7 @@ declare namespace ts.server.protocol {
|
|||||||
/**
|
/**
|
||||||
* An array of span groups (one per file) that refer to the item to be renamed.
|
* An array of span groups (one per file) that refer to the item to be renamed.
|
||||||
*/
|
*/
|
||||||
locs: ReadonlyArray<SpanGroup>;
|
locs: readonly SpanGroup[];
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Rename response message.
|
* Rename response message.
|
||||||
@ -955,7 +970,17 @@ declare namespace ts.server.protocol {
|
|||||||
* For external projects, some of the project settings are sent together with
|
* For external projects, some of the project settings are sent together with
|
||||||
* compiler settings.
|
* compiler settings.
|
||||||
*/
|
*/
|
||||||
type ExternalProjectCompilerOptions = CompilerOptions & CompileOnSaveMixin;
|
type ExternalProjectCompilerOptions = CompilerOptions & CompileOnSaveMixin & WatchOptions;
|
||||||
|
interface FileWithProjectReferenceRedirectInfo {
|
||||||
|
/**
|
||||||
|
* Name of file
|
||||||
|
*/
|
||||||
|
fileName: string;
|
||||||
|
/**
|
||||||
|
* True if the file is primarily included in a referenced project
|
||||||
|
*/
|
||||||
|
isSourceOfProjectReferenceRedirect: boolean;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Represents a set of changes that happen in project
|
* Represents a set of changes that happen in project
|
||||||
*/
|
*/
|
||||||
@ -963,15 +988,20 @@ declare namespace ts.server.protocol {
|
|||||||
/**
|
/**
|
||||||
* List of added files
|
* List of added files
|
||||||
*/
|
*/
|
||||||
added: string[];
|
added: string[] | FileWithProjectReferenceRedirectInfo[];
|
||||||
/**
|
/**
|
||||||
* List of removed files
|
* List of removed files
|
||||||
*/
|
*/
|
||||||
removed: string[];
|
removed: string[] | FileWithProjectReferenceRedirectInfo[];
|
||||||
/**
|
/**
|
||||||
* List of updated files
|
* List of updated files
|
||||||
*/
|
*/
|
||||||
updated: string[];
|
updated: string[] | FileWithProjectReferenceRedirectInfo[];
|
||||||
|
/**
|
||||||
|
* List of files that have had their project reference redirect status updated
|
||||||
|
* Only provided when the synchronizeProjectList request has includeProjectReferenceRedirectInfo set to true
|
||||||
|
*/
|
||||||
|
updatedRedirects?: FileWithProjectReferenceRedirectInfo[];
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Information found in a configure request.
|
* Information found in a configure request.
|
||||||
@ -995,6 +1025,31 @@ declare namespace ts.server.protocol {
|
|||||||
* The host's additional supported .js file extensions
|
* The host's additional supported .js file extensions
|
||||||
*/
|
*/
|
||||||
extraFileExtensions?: FileExtensionInfo[];
|
extraFileExtensions?: FileExtensionInfo[];
|
||||||
|
watchOptions?: WatchOptions;
|
||||||
|
}
|
||||||
|
const enum WatchFileKind {
|
||||||
|
FixedPollingInterval = "FixedPollingInterval",
|
||||||
|
PriorityPollingInterval = "PriorityPollingInterval",
|
||||||
|
DynamicPriorityPolling = "DynamicPriorityPolling",
|
||||||
|
UseFsEvents = "UseFsEvents",
|
||||||
|
UseFsEventsOnParentDirectory = "UseFsEventsOnParentDirectory"
|
||||||
|
}
|
||||||
|
const enum WatchDirectoryKind {
|
||||||
|
UseFsEvents = "UseFsEvents",
|
||||||
|
FixedPollingInterval = "FixedPollingInterval",
|
||||||
|
DynamicPriorityPolling = "DynamicPriorityPolling"
|
||||||
|
}
|
||||||
|
const enum PollingWatchKind {
|
||||||
|
FixedInterval = "FixedInterval",
|
||||||
|
PriorityInterval = "PriorityInterval",
|
||||||
|
DynamicPriority = "DynamicPriority"
|
||||||
|
}
|
||||||
|
interface WatchOptions {
|
||||||
|
watchFile?: WatchFileKind | ts.WatchFileKind;
|
||||||
|
watchDirectory?: WatchDirectoryKind | ts.WatchDirectoryKind;
|
||||||
|
fallbackPolling?: PollingWatchKind | ts.PollingWatchKind;
|
||||||
|
synchronousWatchDirectory?: boolean;
|
||||||
|
[option: string]: CompilerOptionsValue | undefined;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Configure request; value of command field is "configure". Specifies
|
* Configure request; value of command field is "configure". Specifies
|
||||||
@ -1248,6 +1303,16 @@ declare namespace ts.server.protocol {
|
|||||||
* if true - then file should be recompiled even if it does not have any changes.
|
* if true - then file should be recompiled even if it does not have any changes.
|
||||||
*/
|
*/
|
||||||
forced?: boolean;
|
forced?: boolean;
|
||||||
|
includeLinePosition?: boolean;
|
||||||
|
/** if true - return response as object with emitSkipped and diagnostics */
|
||||||
|
richResponse?: boolean;
|
||||||
|
}
|
||||||
|
interface CompileOnSaveEmitFileResponse extends Response {
|
||||||
|
body: boolean | EmitResult;
|
||||||
|
}
|
||||||
|
interface EmitResult {
|
||||||
|
emitSkipped: boolean;
|
||||||
|
diagnostics: Diagnostic[] | DiagnosticWithLinePosition[];
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Quickinfo request; value of command field is
|
* Quickinfo request; value of command field is
|
||||||
@ -1364,8 +1429,8 @@ declare namespace ts.server.protocol {
|
|||||||
commands?: {}[];
|
commands?: {}[];
|
||||||
}
|
}
|
||||||
interface CombinedCodeActions {
|
interface CombinedCodeActions {
|
||||||
changes: ReadonlyArray<FileCodeEdits>;
|
changes: readonly FileCodeEdits[];
|
||||||
commands?: ReadonlyArray<{}>;
|
commands?: readonly {}[];
|
||||||
}
|
}
|
||||||
interface CodeFixAction extends CodeAction {
|
interface CodeFixAction extends CodeAction {
|
||||||
/** Short name to identify the fix, for use by telemetry. */
|
/** Short name to identify the fix, for use by telemetry. */
|
||||||
@ -1406,7 +1471,7 @@ declare namespace ts.server.protocol {
|
|||||||
command: CommandTypes.Formatonkey;
|
command: CommandTypes.Formatonkey;
|
||||||
arguments: FormatOnKeyRequestArgs;
|
arguments: FormatOnKeyRequestArgs;
|
||||||
}
|
}
|
||||||
type CompletionsTriggerCharacter = "." | '"' | "'" | "`" | "/" | "@" | "<";
|
type CompletionsTriggerCharacter = "." | '"' | "'" | "`" | "/" | "@" | "<" | "#";
|
||||||
/**
|
/**
|
||||||
* Arguments for completions messages.
|
* Arguments for completions messages.
|
||||||
*/
|
*/
|
||||||
@ -1523,6 +1588,11 @@ declare namespace ts.server.protocol {
|
|||||||
* Then either that enum/class or a namespace containing it will be the recommended symbol.
|
* Then either that enum/class or a namespace containing it will be the recommended symbol.
|
||||||
*/
|
*/
|
||||||
isRecommended?: true;
|
isRecommended?: true;
|
||||||
|
/**
|
||||||
|
* If true, this completion was generated from traversing the name table of an unchecked JS file,
|
||||||
|
* and therefore may not be accurate.
|
||||||
|
*/
|
||||||
|
isFromUncheckedFile?: true;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Additional completion entry details, available on demand
|
* Additional completion entry details, available on demand
|
||||||
@ -1572,7 +1642,7 @@ declare namespace ts.server.protocol {
|
|||||||
readonly isGlobalCompletion: boolean;
|
readonly isGlobalCompletion: boolean;
|
||||||
readonly isMemberCompletion: boolean;
|
readonly isMemberCompletion: boolean;
|
||||||
readonly isNewIdentifierLocation: boolean;
|
readonly isNewIdentifierLocation: boolean;
|
||||||
readonly entries: ReadonlyArray<CompletionEntry>;
|
readonly entries: readonly CompletionEntry[];
|
||||||
}
|
}
|
||||||
interface CompletionDetailsResponse extends Response {
|
interface CompletionDetailsResponse extends Response {
|
||||||
body?: CompletionEntryDetails[];
|
body?: CompletionEntryDetails[];
|
||||||
@ -2047,7 +2117,7 @@ declare namespace ts.server.protocol {
|
|||||||
/**
|
/**
|
||||||
* Arguments for navto request message.
|
* Arguments for navto request message.
|
||||||
*/
|
*/
|
||||||
interface NavtoRequestArgs extends FileRequestArgs {
|
interface NavtoRequestArgs {
|
||||||
/**
|
/**
|
||||||
* Search term to navigate to from current location; term can
|
* Search term to navigate to from current location; term can
|
||||||
* be '.*' or an identifier prefix.
|
* be '.*' or an identifier prefix.
|
||||||
@ -2057,6 +2127,10 @@ declare namespace ts.server.protocol {
|
|||||||
* Optional limit on the number of items to return.
|
* Optional limit on the number of items to return.
|
||||||
*/
|
*/
|
||||||
maxResultCount?: number;
|
maxResultCount?: number;
|
||||||
|
/**
|
||||||
|
* The file for the request (absolute pathname required).
|
||||||
|
*/
|
||||||
|
file?: string;
|
||||||
/**
|
/**
|
||||||
* Optional flag to indicate we want results for just the current file
|
* Optional flag to indicate we want results for just the current file
|
||||||
* or the entire project.
|
* or the entire project.
|
||||||
@ -2070,7 +2144,7 @@ declare namespace ts.server.protocol {
|
|||||||
* match the search term given in argument 'searchTerm'. The
|
* match the search term given in argument 'searchTerm'. The
|
||||||
* context for the search is given by the named file.
|
* context for the search is given by the named file.
|
||||||
*/
|
*/
|
||||||
interface NavtoRequest extends FileRequest {
|
interface NavtoRequest extends Request {
|
||||||
command: CommandTypes.Navto;
|
command: CommandTypes.Navto;
|
||||||
arguments: NavtoRequestArgs;
|
arguments: NavtoRequestArgs;
|
||||||
}
|
}
|
||||||
@ -2251,7 +2325,7 @@ declare namespace ts.server.protocol {
|
|||||||
/**
|
/**
|
||||||
* list of packages to install
|
* list of packages to install
|
||||||
*/
|
*/
|
||||||
packages: ReadonlyArray<string>;
|
packages: readonly string[];
|
||||||
}
|
}
|
||||||
interface BeginInstallTypesEventBody extends InstallTypesEventBody {
|
interface BeginInstallTypesEventBody extends InstallTypesEventBody {
|
||||||
}
|
}
|
||||||
@ -2267,11 +2341,49 @@ declare namespace ts.server.protocol {
|
|||||||
interface NavTreeResponse extends Response {
|
interface NavTreeResponse extends Response {
|
||||||
body?: NavigationTree;
|
body?: NavigationTree;
|
||||||
}
|
}
|
||||||
|
interface CallHierarchyItem {
|
||||||
|
name: string;
|
||||||
|
kind: ScriptElementKind;
|
||||||
|
file: string;
|
||||||
|
span: TextSpan;
|
||||||
|
selectionSpan: TextSpan;
|
||||||
|
}
|
||||||
|
interface CallHierarchyIncomingCall {
|
||||||
|
from: CallHierarchyItem;
|
||||||
|
fromSpans: TextSpan[];
|
||||||
|
}
|
||||||
|
interface CallHierarchyOutgoingCall {
|
||||||
|
to: CallHierarchyItem;
|
||||||
|
fromSpans: TextSpan[];
|
||||||
|
}
|
||||||
|
interface PrepareCallHierarchyRequest extends FileLocationRequest {
|
||||||
|
command: CommandTypes.PrepareCallHierarchy;
|
||||||
|
}
|
||||||
|
interface PrepareCallHierarchyResponse extends Response {
|
||||||
|
readonly body: CallHierarchyItem | CallHierarchyItem[];
|
||||||
|
}
|
||||||
|
interface ProvideCallHierarchyIncomingCallsRequest extends FileLocationRequest {
|
||||||
|
command: CommandTypes.ProvideCallHierarchyIncomingCalls;
|
||||||
|
}
|
||||||
|
interface ProvideCallHierarchyIncomingCallsResponse extends Response {
|
||||||
|
readonly body: CallHierarchyIncomingCall[];
|
||||||
|
}
|
||||||
|
interface ProvideCallHierarchyOutgoingCallsRequest extends FileLocationRequest {
|
||||||
|
command: CommandTypes.ProvideCallHierarchyOutgoingCalls;
|
||||||
|
}
|
||||||
|
interface ProvideCallHierarchyOutgoingCallsResponse extends Response {
|
||||||
|
readonly body: CallHierarchyOutgoingCall[];
|
||||||
|
}
|
||||||
const enum IndentStyle {
|
const enum IndentStyle {
|
||||||
None = "None",
|
None = "None",
|
||||||
Block = "Block",
|
Block = "Block",
|
||||||
Smart = "Smart"
|
Smart = "Smart"
|
||||||
}
|
}
|
||||||
|
enum SemicolonPreference {
|
||||||
|
Ignore = "ignore",
|
||||||
|
Insert = "insert",
|
||||||
|
Remove = "remove"
|
||||||
|
}
|
||||||
interface EditorSettings {
|
interface EditorSettings {
|
||||||
baseIndentSize?: number;
|
baseIndentSize?: number;
|
||||||
indentSize?: number;
|
indentSize?: number;
|
||||||
@ -2279,6 +2391,7 @@ declare namespace ts.server.protocol {
|
|||||||
newLineCharacter?: string;
|
newLineCharacter?: string;
|
||||||
convertTabsToSpaces?: boolean;
|
convertTabsToSpaces?: boolean;
|
||||||
indentStyle?: IndentStyle | ts.IndentStyle;
|
indentStyle?: IndentStyle | ts.IndentStyle;
|
||||||
|
trimTrailingWhitespace?: boolean;
|
||||||
}
|
}
|
||||||
interface FormatCodeSettings extends EditorSettings {
|
interface FormatCodeSettings extends EditorSettings {
|
||||||
insertSpaceAfterCommaDelimiter?: boolean;
|
insertSpaceAfterCommaDelimiter?: boolean;
|
||||||
@ -2297,6 +2410,7 @@ declare namespace ts.server.protocol {
|
|||||||
placeOpenBraceOnNewLineForFunctions?: boolean;
|
placeOpenBraceOnNewLineForFunctions?: boolean;
|
||||||
placeOpenBraceOnNewLineForControlBlocks?: boolean;
|
placeOpenBraceOnNewLineForControlBlocks?: boolean;
|
||||||
insertSpaceBeforeTypeAnnotation?: boolean;
|
insertSpaceBeforeTypeAnnotation?: boolean;
|
||||||
|
semicolons?: SemicolonPreference;
|
||||||
}
|
}
|
||||||
interface UserPreferences {
|
interface UserPreferences {
|
||||||
readonly disableSuggestions?: boolean;
|
readonly disableSuggestions?: boolean;
|
||||||
@ -2311,7 +2425,15 @@ declare namespace ts.server.protocol {
|
|||||||
* For those entries, The `insertText` and `replacementSpan` properties will be set to change from `.x` property access to `["x"]`.
|
* For those entries, The `insertText` and `replacementSpan` properties will be set to change from `.x` property access to `["x"]`.
|
||||||
*/
|
*/
|
||||||
readonly includeCompletionsWithInsertText?: boolean;
|
readonly includeCompletionsWithInsertText?: boolean;
|
||||||
readonly importModuleSpecifierPreference?: "relative" | "non-relative";
|
/**
|
||||||
|
* Unless this option is `false`, or `includeCompletionsWithInsertText` is not enabled,
|
||||||
|
* member completion lists triggered with `.` will include entries on potentially-null and potentially-undefined
|
||||||
|
* values, with insertion text to replace preceding `.` tokens with `?.`.
|
||||||
|
*/
|
||||||
|
readonly includeAutomaticOptionalChainCompletions?: boolean;
|
||||||
|
readonly importModuleSpecifierPreference?: "auto" | "relative" | "non-relative";
|
||||||
|
/** Determines whether we import `foo/index.ts` as "foo", "foo/index", or "foo/index.js" */
|
||||||
|
readonly importModuleSpecifierEnding?: "auto" | "minimal" | "index" | "js";
|
||||||
readonly allowTextChangesInNewFiles?: boolean;
|
readonly allowTextChangesInNewFiles?: boolean;
|
||||||
readonly lazyConfiguredProjectsFromExternalProject?: boolean;
|
readonly lazyConfiguredProjectsFromExternalProject?: boolean;
|
||||||
readonly providePrefixAndSuffixTextForRename?: boolean;
|
readonly providePrefixAndSuffixTextForRename?: boolean;
|
||||||
@ -2380,6 +2502,7 @@ declare namespace ts.server.protocol {
|
|||||||
strictNullChecks?: boolean;
|
strictNullChecks?: boolean;
|
||||||
suppressExcessPropertyErrors?: boolean;
|
suppressExcessPropertyErrors?: boolean;
|
||||||
suppressImplicitAnyIndexErrors?: boolean;
|
suppressImplicitAnyIndexErrors?: boolean;
|
||||||
|
useDefineForClassFields?: boolean;
|
||||||
target?: ScriptTarget | ts.ScriptTarget;
|
target?: ScriptTarget | ts.ScriptTarget;
|
||||||
traceResolution?: boolean;
|
traceResolution?: boolean;
|
||||||
resolveJsonModule?: boolean;
|
resolveJsonModule?: boolean;
|
||||||
@ -2533,6 +2656,10 @@ declare namespace ts.server.protocol {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface TypeAcquisition {
|
export interface TypeAcquisition {
|
||||||
|
/**
|
||||||
|
* @deprecated typingOptions.enableAutoDiscovery
|
||||||
|
* Use typeAcquisition.enable instead.
|
||||||
|
*/
|
||||||
enableAutoDiscovery?: boolean;
|
enableAutoDiscovery?: boolean;
|
||||||
enable?: boolean;
|
enable?: boolean;
|
||||||
include?: string[];
|
include?: string[];
|
||||||
@ -2546,6 +2673,8 @@ declare namespace ts.server.protocol {
|
|||||||
scriptKind?: ScriptKind;
|
scriptKind?: ScriptKind;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | PluginImport[] | ProjectReference[] | null | undefined;
|
||||||
|
|
||||||
interface JSDocTagInfo {
|
interface JSDocTagInfo {
|
||||||
name: string;
|
name: string;
|
||||||
text?: string;
|
text?: string;
|
||||||
@ -2574,12 +2703,13 @@ declare namespace ts.server.protocol {
|
|||||||
/** True if it is intended that this reference form a circularity */
|
/** True if it is intended that this reference form a circularity */
|
||||||
circular?: boolean;
|
circular?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | PluginImport[] | ProjectReference[] | null | undefined;
|
|
||||||
}
|
}
|
||||||
declare namespace ts {
|
declare namespace ts {
|
||||||
// these types are empty stubs for types from services and should not be used directly
|
// these types are empty stubs for types from services and should not be used directly
|
||||||
export type ScriptKind = never;
|
export type ScriptKind = never;
|
||||||
|
export type WatchFileKind = never;
|
||||||
|
export type WatchDirectoryKind = never;
|
||||||
|
export type PollingWatchKind = never;
|
||||||
export type IndentStyle = never;
|
export type IndentStyle = never;
|
||||||
export type JsxEmit = never;
|
export type JsxEmit = never;
|
||||||
export type ModuleKind = never;
|
export type ModuleKind = never;
|
||||||
|
472
node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json
generated
vendored
472
node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
500
node_modules/typescript/lib/ru/diagnosticMessages.generated.json
generated
vendored
500
node_modules/typescript/lib/ru/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
470
node_modules/typescript/lib/tr/diagnosticMessages.generated.json
generated
vendored
470
node_modules/typescript/lib/tr/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
34585
node_modules/typescript/lib/tsc.js
generated
vendored
34585
node_modules/typescript/lib/tsc.js
generated
vendored
File diff suppressed because one or more lines are too long
53395
node_modules/typescript/lib/tsserver.js
generated
vendored
53395
node_modules/typescript/lib/tsserver.js
generated
vendored
File diff suppressed because one or more lines are too long
1857
node_modules/typescript/lib/tsserverlibrary.d.ts
generated
vendored
1857
node_modules/typescript/lib/tsserverlibrary.d.ts
generated
vendored
File diff suppressed because it is too large
Load Diff
53311
node_modules/typescript/lib/tsserverlibrary.js
generated
vendored
53311
node_modules/typescript/lib/tsserverlibrary.js
generated
vendored
File diff suppressed because one or more lines are too long
1616
node_modules/typescript/lib/typescript.d.ts
generated
vendored
1616
node_modules/typescript/lib/typescript.d.ts
generated
vendored
File diff suppressed because it is too large
Load Diff
51705
node_modules/typescript/lib/typescript.js
generated
vendored
51705
node_modules/typescript/lib/typescript.js
generated
vendored
File diff suppressed because one or more lines are too long
1616
node_modules/typescript/lib/typescriptServices.d.ts
generated
vendored
1616
node_modules/typescript/lib/typescriptServices.d.ts
generated
vendored
File diff suppressed because it is too large
Load Diff
51705
node_modules/typescript/lib/typescriptServices.js
generated
vendored
51705
node_modules/typescript/lib/typescriptServices.js
generated
vendored
File diff suppressed because one or more lines are too long
38174
node_modules/typescript/lib/typingsInstaller.js
generated
vendored
38174
node_modules/typescript/lib/typingsInstaller.js
generated
vendored
File diff suppressed because one or more lines are too long
12
node_modules/typescript/lib/watchGuard.js
generated
vendored
12
node_modules/typescript/lib/watchGuard.js
generated
vendored
@ -1,14 +1,14 @@
|
|||||||
/*! *****************************************************************************
|
/*! *****************************************************************************
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
this file except in compliance with the License. You may obtain a copy of the
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
License at http://www.apache.org/licenses/LICENSE-2.0
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
MERCHANTABLITY OR NON-INFRINGEMENT.
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
See the Apache Version 2.0 License for specific language governing permissions
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
and limitations under the License.
|
and limitations under the License.
|
||||||
***************************************************************************** */
|
***************************************************************************** */
|
||||||
|
475
node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json
generated
vendored
475
node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
534
node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json
generated
vendored
534
node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json
generated
vendored
File diff suppressed because it is too large
Load Diff
33
node_modules/typescript/loc/lcl/CHS/Targets/ProjectItemsSchema.xaml.lcl
generated
vendored
Normal file
33
node_modules/typescript/loc/lcl/CHS/Targets/ProjectItemsSchema.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<ContentType>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<ItemType>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
195
node_modules/typescript/loc/lcl/CHS/Targets/TypeScriptCompile.xaml.lcl
generated
vendored
Normal file
195
node_modules/typescript/loc/lcl/CHS/Targets/TypeScriptCompile.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<Category>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[General]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[常规]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定是否应将文件复制到输出文件夹。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定生成应用程序包时对此文件执行的操作。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy to Output Directory]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[复制到输出目录]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Package Action]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[包操作]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumValue>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy always]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[始终复制]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[App Manifest]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[应用程序清单]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Content]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[内容]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Do not copy]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[不复制]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[None]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[无]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy if newer]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[如果较新则复制]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Resource]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[资源]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScriptCompile]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScriptCompile]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<Rule>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<StringProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Location of the file.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[文件位置。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Name of the file or folder.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[文件或文件夹的名称。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Full Path]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[完整路径]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[File Name]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[文件名]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
492
node_modules/typescript/loc/lcl/CHS/Targets/TypeScriptProjectProperties.xaml.lcl
generated
vendored
Normal file
492
node_modules/typescript/loc/lcl/CHS/Targets/TypeScriptProjectProperties.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,492 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<Category>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript Build]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 生成]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Recompile sources on save]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[在保存时重新编译源]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[生成对应的 d.ts 文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[为 .tsx 文件指定 JSX 代码编译模式,这不会影响 .ts 文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[External module code generation target]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[外部模块代码生成目标]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[如果报告了任何错误,请发出输出]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[对于隐式“Any”类型,禁止有关表达式和声明的警告]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit comments to output]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[将注释发送到输出中。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generates corresponding .map file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[生成对应的 .map 文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[要用于已生成的 JavaScript 的 ECMAScript 版本]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Compile on save]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[在保存时编译]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generate declaration files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[生成声明文件]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[.tsx 文件的编译模式]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Module system]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[模块系统]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit on error]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[出现错误时发出]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Allow implicit 'any' types]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[允许隐式 "any" 类型]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[在 JavaScript 输出中保留注释]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generate source maps]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[生成源映射]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript version]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 版本]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumValue>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[AMD]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[AMD]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[CommonJS]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[CommonJS]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript 3]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 3]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript 5]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 5]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript 6]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 6]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[None]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[无]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Preserve JSX elements]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[保留 JSX 元素]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit React call for JSX elements]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[发出 JSX 元素的 React 调用]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[System]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[系统]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[UMD]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[UMD]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[None]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[无]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<Rule>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript Build]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 生成]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript Build]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 生成]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<StringProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[发送源映射,使得在调试期间源映射将位于源映射根目录中]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[将输出重定向到不同于源目录的目录]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Redirect output to a file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[将输出重定向到文件中]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[发送源映射,使得在调试期间源映射将位于源根目录中]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specify root directory of source maps]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定源映射的根目录]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[将 JavaScript 输出重定向到目录]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Combine JavaScript output into file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[将 JavaScript 输出合并到文件中]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定 TypeScript 文件的根目录]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
123
node_modules/typescript/loc/lcl/CHS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl
generated
vendored
Normal file
123
node_modules/typescript/loc/lcl/CHS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl
generated
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="RCCX" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
|
||||||
|
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[文档 {0} 读取失败: {1}。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[解码源映射内容时出错。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[脚本 {1} 的源映射 URL {0} 无效。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[源映射 {0} 读取失败: {1}。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[源映射的格式不受支持。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定了不受支持的嵌入式源映射格式。源映射: {0}]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
|
||||||
|
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Microsoft Corporation]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Debug Engine]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 调试引擎]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation。保留所有权利。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Debug Engine]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 调试引擎]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
864
node_modules/typescript/loc/lcl/CHS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl
generated
vendored
Normal file
864
node_modules/typescript/loc/lcl/CHS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
177
node_modules/typescript/loc/lcl/CHS/TypeScriptTasks/TypeScript.Tasks.dll.lcl
generated
vendored
Normal file
177
node_modules/typescript/loc/lcl/CHS/TypeScriptTasks/TypeScript.Tasks.dll.lcl
generated
vendored
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="RCCX" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
|
||||||
|
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[未指定任何编译器日志,“清理”将不起作用。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[此项目正在针对生成使用一个或多个 tsconfig.json 文件,而 IntelliSense 可能未正确使用它们。请将每个 tsconfig.json 文件的项目类型设置为 TypeScriptCompile 或 Content,确保编辑器均正确使用它们。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Build:]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[生成:]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[无法将编译器日志写入“{0}”。 异常:“{1}”]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[使用编译器版本({0}),如果这不正确,则更改项目文件中的 <TypeScriptToolsVersion> 元素。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[已将引用文件放置在“{0}”处。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[你的项目文件使用的 TypeScript 编译器和工具的版本不同于此计算机上当前安装的版本。在 {0} 处未找到编译器。通过更改项目文件中的 <TypeScriptToolsVersion> 元素,或许可以修复此问题。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[生成任务找不到运行 TypeScript 编译器所需的 node.exe。请安装 Node 并确保系统路径包含其位置。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[找不到项目文件中指定的编译器版本({0})。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[由于 TypeScriptCompileBlocked 属性设置为 "true",因此会跳过 TypeScript 编译。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[项目未指定 TypeScriptToolsVersion。系统将使用最新可用的 TypeScript 编译器({0})。若要消除此警告,请将 TypeScriptToolsVersion 设置为特定版本或“最新版本”以始终选择最新编译器。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[项目指定 TypeScriptToolsVersion {0},但未找到匹配的编译器。系统将使用最新可用的 TypeScript 编译器({1})。若要消除此警告,请安装 TypeScript {0} SDK 或更新 TypeScriptToolsVersion 的值。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
|
||||||
|
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Microsoft Corporation]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Build Tasks]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 生成任务]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation。保留所有权利。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Build Tasks]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 生成任务]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
33
node_modules/typescript/loc/lcl/CHT/Targets/ProjectItemsSchema.xaml.lcl
generated
vendored
Normal file
33
node_modules/typescript/loc/lcl/CHT/Targets/ProjectItemsSchema.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<ContentType>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<ItemType>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
195
node_modules/typescript/loc/lcl/CHT/Targets/TypeScriptCompile.xaml.lcl
generated
vendored
Normal file
195
node_modules/typescript/loc/lcl/CHT/Targets/TypeScriptCompile.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<Category>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[General]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[一般]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定檔案是否應複製到輸出資料夾。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定當應用程式套件產生之後,要對此檔案採取的動作。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy to Output Directory]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[複製到輸出目錄]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Package Action]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[封裝動作]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumValue>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy always]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[永遠複製]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[App Manifest]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[應用程式資訊清單]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Content]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[內容]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Do not copy]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[不要複製]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[None]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[無]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy if newer]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[有更新時才複製]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Resource]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[資源]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScriptCompile]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScriptCompile]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<Rule>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<StringProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Location of the file.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[檔案的位置。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Name of the file or folder.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[檔案或資料夾的名稱。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Full Path]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[完整路徑]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[File Name]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[檔案名稱]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
492
node_modules/typescript/loc/lcl/CHT/Targets/TypeScriptProjectProperties.xaml.lcl
generated
vendored
Normal file
492
node_modules/typescript/loc/lcl/CHT/Targets/TypeScriptProjectProperties.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,492 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<Category>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript Build]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 建置]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Recompile sources on save]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[儲存時重新編譯來源]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[產生對應的 d.ts 檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[為 .tsx 檔指定 JSX 程式碼編譯模式,這不會影響 .ts 檔]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[External module code generation target]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[外部模組程式碼產生目標]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[如果回報任何錯誤,則發出輸出]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[不顯示對具有隱含 Any 類型之運算式與宣告的警告]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit comments to output]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[將註解發至輸出]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generates corresponding .map file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[產生對應的 .map 檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[產生之 JavaScript 所要使用的 ECMAScript 版本]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Compile on save]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[儲存時編譯]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generate declaration files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[產生宣告檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[.tsx 檔的編譯模式]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Module system]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[模組系統]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit on error]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[錯誤時發出]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Allow implicit 'any' types]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[允許隱含的 'any' 類型]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[在 JavaScript 輸出中保留註解]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Generate source maps]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[產生來源對應]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript version]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 版本]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumValue>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[AMD]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[AMD]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[CommonJS]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[CommonJS]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript 3]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 3]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript 5]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 5]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[ECMAScript 6]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[ECMAScript 6]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[None]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[無]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Preserve JSX elements]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[保留 JSX 項目]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emit React call for JSX elements]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[針對 JSX 項目發出 React 呼叫]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[System]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[系統]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[UMD]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[UMD]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[None]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[無]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Yes]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[是]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[No]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[否]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<Rule>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript Build]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 建置]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript Build]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 建置]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<StringProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[發出 sourcemap,以便偵錯時,可以在 sourcemap 根目錄中找到 sourcemap。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[將輸出重新導向至不同於來源的目錄]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Redirect output to a file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[將輸出重新導向至檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[發出 sourcemap,以便偵錯時,可以在來源根目錄中找到來源。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specify root directory of source maps]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定來源對應的根目錄]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[將 JavaScript 輸出重新導向至目錄]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Combine JavaScript output into file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[將 JavaScript 輸出合併至檔案]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指定 TypeScript 檔案的根目錄]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
123
node_modules/typescript/loc/lcl/CHT/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl
generated
vendored
Normal file
123
node_modules/typescript/loc/lcl/CHT/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl
generated
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="RCCX" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
|
||||||
|
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[文件 {0} 讀取失敗: {1}。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[解碼 sourcemap 內容時發生錯誤。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[指令碼 {1} 的 sourcemap URL {0} 無效。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[SourceMap {0} 讀取失敗: {1}。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[不支援的 sourcemap 格式。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[不支援指定的內嵌 sourcemap 格式。SourceMap: {0}]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
|
||||||
|
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Microsoft Corporation]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Debug Engine]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 偵錯引擎]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation. 著作權所有,並保留一切權利。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Debug Engine]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 偵錯引擎]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
864
node_modules/typescript/loc/lcl/CHT/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl
generated
vendored
Normal file
864
node_modules/typescript/loc/lcl/CHT/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
177
node_modules/typescript/loc/lcl/CHT/TypeScriptTasks/TypeScript.Tasks.dll.lcl
generated
vendored
Normal file
177
node_modules/typescript/loc/lcl/CHT/TypeScriptTasks/TypeScript.Tasks.dll.lcl
generated
vendored
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="RCCX" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
|
||||||
|
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[未指定編譯器記錄檔,因此 [清除]5D; 將無法運作。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[此專案正在對 IntelliSense 可能無法正確使用的組建,使用一或多個 tsconfig.json 檔案。請將每個 tsconfig.json 檔案的項目類型設定為 TypeScriptCompile 或 Content,以確保編輯器正確使用它們。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Build:]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[建置:]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[無法將編譯器記錄檔寫入 '{0}。例外狀況: '{1}']]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[將使用編譯器版本 ({0}),若此版本不正確,請變更專案檔中的 <TypeScriptToolsVersion> 元素。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[在 '{0}' 找到參考檔案。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[您的專案檔使用的 TypeScript 編譯器和工具版本與這部電腦目前安裝的版本不同。在 {0} 找不到任何編譯器。變更專案檔中的 <TypeScriptToolsVersion> 元素,或許可以修正此問題。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[建置工作找不到執行 TypeScript 編譯器所需的 node.exe。請安裝 Node,並確定系統路徑中包含其位置。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[找不到專案檔中指定的編譯器版本 ({0})。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[因為 TypeScriptCompileBlocked 屬性設為 'true',所以跳過 TypeScript 編譯。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[您的專案未指定 TypeScriptToolsVersion。系統會使用最新的可用 TypeScript 編譯器 ({0})。若要移除這個警告,請將 TypeScriptToolsVersion 設為特定版本,或 [最新]5D; 以一律選取最新編譯器。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[您的專案指定了 TypeScriptToolsVersion {0},但找不到相符的編譯器。系統會使用最新可用的 TypeScript 編譯器 ({1})。若要移除此警告,請安裝 TypeScript {0} SDK 或更新 TypeScriptToolsVersion 的值。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
|
||||||
|
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
|
||||||
|
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[Microsoft Corporation]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Build Tasks]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 建置工作]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[© Microsoft Corporation. 著作權所有,並保留一切權利。]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text" DevLk="true">
|
||||||
|
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
|
||||||
|
<Str Cat="Text">
|
||||||
|
<Val><![CDATA[TypeScript Build Tasks]]></Val>
|
||||||
|
<Tgt Cat="Text" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScript 建置工作]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
|
||||||
|
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
33
node_modules/typescript/loc/lcl/CSY/Targets/ProjectItemsSchema.xaml.lcl
generated
vendored
Normal file
33
node_modules/typescript/loc/lcl/CSY/Targets/ProjectItemsSchema.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<ContentType>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Soubor TypeScriptu]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<ItemType>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Soubor TypeScriptu]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
195
node_modules/typescript/loc/lcl/CSY/Targets/TypeScriptCompile.xaml.lcl
generated
vendored
Normal file
195
node_modules/typescript/loc/lcl/CSY/Targets/TypeScriptCompile.xaml.lcl
generated
vendored
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
|
||||||
|
<OwnedComments>
|
||||||
|
<Cmt Name="Dev" />
|
||||||
|
<Cmt Name="LcxAdmin" />
|
||||||
|
<Cmt Name="Rccx" />
|
||||||
|
</OwnedComments>
|
||||||
|
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
|
||||||
|
<Item ItemId=";<Category>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[General]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Obecné]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Určuje, jestli se má soubor zkopírovat do výstupní složky.]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Určuje akci pro tento soubor, když je vytvořený balíček aplikace.]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy to Output Directory]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Kopírovat do výstupního adresáře]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Package Action]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Akce balíčku]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<EnumValue>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy always]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Vždycky kopírovat]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[App Manifest]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Manifest aplikace]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Content]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Obsah]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Do not copy]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Nekopírovat]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[None]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Žádný]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Copy if newer]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Kopírovat, pokud je novější]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Resource]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Prostředek]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScriptCompile]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[TypeScriptCompile]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<Rule>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Soubor TypeScriptu]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[TypeScript file]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Soubor TypeScriptu]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
<Item ItemId=";<StringProperty>" ItemType="0" PsrId="210" Leaf="false">
|
||||||
|
<Disp Icon="Str" Disp="true" LocTbl="false" />
|
||||||
|
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Location of the file.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Umístění souboru]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Name of the file or folder.]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Název souboru nebo složky]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[Full Path]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Úplná cesta]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
|
||||||
|
<Str Cat="AppData">
|
||||||
|
<Val><![CDATA[File Name]]></Val>
|
||||||
|
<Tgt Cat="AppData" Stat="Loc" Orig="New">
|
||||||
|
<Val><![CDATA[Název souboru]]></Val>
|
||||||
|
</Tgt>
|
||||||
|
</Str>
|
||||||
|
<Disp Icon="Str" />
|
||||||
|
</Item>
|
||||||
|
</Item>
|
||||||
|
</LCX>
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user