mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
Deploy Production Code for Commit 8e80bb1dd1
🚀
This commit is contained in:
parent
8e80bb1dd1
commit
164583b9e4
0
node_modules/@types/node/LICENSE
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/LICENSE
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/README.md
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/README.md
generated
vendored
Normal file → Executable file
@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://nodejs.org/).
|
|||||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
||||||
|
|
||||||
### Additional Details
|
### Additional Details
|
||||||
* Last updated: Fri, 19 Feb 2021 17:58:40 GMT
|
* Last updated: Sat, 27 Mar 2021 00:01:17 GMT
|
||||||
* Dependencies: none
|
* Dependencies: none
|
||||||
* Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
* Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
||||||
|
|
||||||
|
0
node_modules/@types/node/assert.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/assert.d.ts
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/async_hooks.d.ts
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/async_hooks.d.ts
generated
vendored
Normal file → Executable file
@ -151,7 +151,7 @@ declare module 'async_hooks' {
|
|||||||
/**
|
/**
|
||||||
* Call AsyncHooks destroy callbacks.
|
* Call AsyncHooks destroy callbacks.
|
||||||
*/
|
*/
|
||||||
emitDestroy(): void;
|
emitDestroy(): this;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the unique ID assigned to this AsyncResource instance.
|
* @return the unique ID assigned to this AsyncResource instance.
|
||||||
|
0
node_modules/@types/node/base.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/base.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/buffer.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/buffer.d.ts
generated
vendored
Normal file → Executable file
25
node_modules/@types/node/child_process.d.ts
generated
vendored
Normal file → Executable file
25
node_modules/@types/node/child_process.d.ts
generated
vendored
Normal file → Executable file
@ -342,6 +342,7 @@ declare module 'child_process' {
|
|||||||
interface ExecFileOptionsWithOtherEncoding extends ExecFileOptions {
|
interface ExecFileOptionsWithOtherEncoding extends ExecFileOptions {
|
||||||
encoding: BufferEncoding;
|
encoding: BufferEncoding;
|
||||||
}
|
}
|
||||||
|
type ExecFileException = ExecException & NodeJS.ErrnoException;
|
||||||
|
|
||||||
function execFile(file: string): ChildProcess;
|
function execFile(file: string): ChildProcess;
|
||||||
function execFile(file: string, options: (BaseEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess;
|
function execFile(file: string, options: (BaseEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess;
|
||||||
@ -349,25 +350,25 @@ declare module 'child_process' {
|
|||||||
function execFile(file: string, args: ReadonlyArray<string> | undefined | null, options: (BaseEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess;
|
function execFile(file: string, args: ReadonlyArray<string> | undefined | null, options: (BaseEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess;
|
||||||
|
|
||||||
// no `options` definitely means stdout/stderr are `string`.
|
// no `options` definitely means stdout/stderr are `string`.
|
||||||
function execFile(file: string, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess;
|
function execFile(file: string, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess;
|
||||||
function execFile(file: string, args: ReadonlyArray<string> | undefined | null, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess;
|
function execFile(file: string, args: ReadonlyArray<string> | undefined | null, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess;
|
||||||
|
|
||||||
// `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`.
|
// `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`.
|
||||||
function execFile(file: string, options: ExecFileOptionsWithBufferEncoding, callback: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void): ChildProcess;
|
function execFile(file: string, options: ExecFileOptionsWithBufferEncoding, callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void): ChildProcess;
|
||||||
function execFile(
|
function execFile(
|
||||||
file: string,
|
file: string,
|
||||||
args: ReadonlyArray<string> | undefined | null,
|
args: ReadonlyArray<string> | undefined | null,
|
||||||
options: ExecFileOptionsWithBufferEncoding,
|
options: ExecFileOptionsWithBufferEncoding,
|
||||||
callback: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void,
|
callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void,
|
||||||
): ChildProcess;
|
): ChildProcess;
|
||||||
|
|
||||||
// `options` with well known `encoding` means stdout/stderr are definitely `string`.
|
// `options` with well known `encoding` means stdout/stderr are definitely `string`.
|
||||||
function execFile(file: string, options: ExecFileOptionsWithStringEncoding, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess;
|
function execFile(file: string, options: ExecFileOptionsWithStringEncoding, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess;
|
||||||
function execFile(
|
function execFile(
|
||||||
file: string,
|
file: string,
|
||||||
args: ReadonlyArray<string> | undefined | null,
|
args: ReadonlyArray<string> | undefined | null,
|
||||||
options: ExecFileOptionsWithStringEncoding,
|
options: ExecFileOptionsWithStringEncoding,
|
||||||
callback: (error: ExecException | null, stdout: string, stderr: string) => void,
|
callback: (error: ExecFileException | null, stdout: string, stderr: string) => void,
|
||||||
): ChildProcess;
|
): ChildProcess;
|
||||||
|
|
||||||
// `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`.
|
// `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`.
|
||||||
@ -375,35 +376,35 @@ declare module 'child_process' {
|
|||||||
function execFile(
|
function execFile(
|
||||||
file: string,
|
file: string,
|
||||||
options: ExecFileOptionsWithOtherEncoding,
|
options: ExecFileOptionsWithOtherEncoding,
|
||||||
callback: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void,
|
callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void,
|
||||||
): ChildProcess;
|
): ChildProcess;
|
||||||
function execFile(
|
function execFile(
|
||||||
file: string,
|
file: string,
|
||||||
args: ReadonlyArray<string> | undefined | null,
|
args: ReadonlyArray<string> | undefined | null,
|
||||||
options: ExecFileOptionsWithOtherEncoding,
|
options: ExecFileOptionsWithOtherEncoding,
|
||||||
callback: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void,
|
callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void,
|
||||||
): ChildProcess;
|
): ChildProcess;
|
||||||
|
|
||||||
// `options` without an `encoding` means stdout/stderr are definitely `string`.
|
// `options` without an `encoding` means stdout/stderr are definitely `string`.
|
||||||
function execFile(file: string, options: ExecFileOptions, callback: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess;
|
function execFile(file: string, options: ExecFileOptions, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess;
|
||||||
function execFile(
|
function execFile(
|
||||||
file: string,
|
file: string,
|
||||||
args: ReadonlyArray<string> | undefined | null,
|
args: ReadonlyArray<string> | undefined | null,
|
||||||
options: ExecFileOptions,
|
options: ExecFileOptions,
|
||||||
callback: (error: ExecException | null, stdout: string, stderr: string) => void
|
callback: (error: ExecFileException | null, stdout: string, stderr: string) => void
|
||||||
): ChildProcess;
|
): ChildProcess;
|
||||||
|
|
||||||
// fallback if nothing else matches. Worst case is always `string | Buffer`.
|
// fallback if nothing else matches. Worst case is always `string | Buffer`.
|
||||||
function execFile(
|
function execFile(
|
||||||
file: string,
|
file: string,
|
||||||
options: (BaseEncodingOptions & ExecFileOptions) | undefined | null,
|
options: (BaseEncodingOptions & ExecFileOptions) | undefined | null,
|
||||||
callback: ((error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null,
|
callback: ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null,
|
||||||
): ChildProcess;
|
): ChildProcess;
|
||||||
function execFile(
|
function execFile(
|
||||||
file: string,
|
file: string,
|
||||||
args: ReadonlyArray<string> | undefined | null,
|
args: ReadonlyArray<string> | undefined | null,
|
||||||
options: (BaseEncodingOptions & ExecFileOptions) | undefined | null,
|
options: (BaseEncodingOptions & ExecFileOptions) | undefined | null,
|
||||||
callback: ((error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null,
|
callback: ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null,
|
||||||
): ChildProcess;
|
): ChildProcess;
|
||||||
|
|
||||||
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
// NOTE: This namespace provides design-time support for util.promisify. Exported members do not exist at runtime.
|
||||||
|
0
node_modules/@types/node/cluster.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/cluster.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/console.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/console.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/constants.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/constants.d.ts
generated
vendored
Normal file → Executable file
8
node_modules/@types/node/crypto.d.ts
generated
vendored
Normal file → Executable file
8
node_modules/@types/node/crypto.d.ts
generated
vendored
Normal file → Executable file
@ -234,8 +234,8 @@ declare module 'crypto' {
|
|||||||
private constructor();
|
private constructor();
|
||||||
update(data: BinaryLike): Buffer;
|
update(data: BinaryLike): Buffer;
|
||||||
update(data: string, input_encoding: Encoding): Buffer;
|
update(data: string, input_encoding: Encoding): Buffer;
|
||||||
update(data: NodeJS.ArrayBufferView, input_encoding: undefined, output_encoding: BinaryToTextEncoding): string;
|
update(data: NodeJS.ArrayBufferView, input_encoding: undefined, output_encoding: Encoding): string;
|
||||||
update(data: string, input_encoding: Encoding | undefined, output_encoding: BinaryToTextEncoding): string;
|
update(data: string, input_encoding: Encoding | undefined, output_encoding: Encoding): string;
|
||||||
final(): Buffer;
|
final(): Buffer;
|
||||||
final(output_encoding: BufferEncoding): string;
|
final(output_encoding: BufferEncoding): string;
|
||||||
setAutoPadding(auto_padding?: boolean): this;
|
setAutoPadding(auto_padding?: boolean): this;
|
||||||
@ -279,9 +279,9 @@ declare module 'crypto' {
|
|||||||
class Decipher extends stream.Transform {
|
class Decipher extends stream.Transform {
|
||||||
private constructor();
|
private constructor();
|
||||||
update(data: NodeJS.ArrayBufferView): Buffer;
|
update(data: NodeJS.ArrayBufferView): Buffer;
|
||||||
update(data: string, input_encoding: BinaryToTextEncoding): Buffer;
|
update(data: string, input_encoding: Encoding): Buffer;
|
||||||
update(data: NodeJS.ArrayBufferView, input_encoding: undefined, output_encoding: Encoding): string;
|
update(data: NodeJS.ArrayBufferView, input_encoding: undefined, output_encoding: Encoding): string;
|
||||||
update(data: string, input_encoding: BinaryToTextEncoding | undefined, output_encoding: Encoding): string;
|
update(data: string, input_encoding: Encoding | undefined, output_encoding: Encoding): string;
|
||||||
final(): Buffer;
|
final(): Buffer;
|
||||||
final(output_encoding: BufferEncoding): string;
|
final(output_encoding: BufferEncoding): string;
|
||||||
setAutoPadding(auto_padding?: boolean): this;
|
setAutoPadding(auto_padding?: boolean): this;
|
||||||
|
0
node_modules/@types/node/dgram.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/dgram.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/dns.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/dns.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/domain.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/domain.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/events.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/events.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/fs.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/fs.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/fs/promises.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/fs/promises.d.ts
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/globals.d.ts
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/globals.d.ts
generated
vendored
Normal file → Executable file
@ -6,7 +6,7 @@ interface ErrorConstructor {
|
|||||||
/**
|
/**
|
||||||
* Optional override for formatting stack traces
|
* Optional override for formatting stack traces
|
||||||
*
|
*
|
||||||
* @see https://github.com/v8/v8/wiki/Stack%20Trace%20API#customizing-stack-traces
|
* @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces
|
||||||
*/
|
*/
|
||||||
prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
|
prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
|
||||||
|
|
||||||
|
0
node_modules/@types/node/globals.global.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/globals.global.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/http.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/http.d.ts
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/http2.d.ts
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/http2.d.ts
generated
vendored
Normal file → Executable file
@ -652,7 +652,7 @@ declare module 'http2' {
|
|||||||
prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Http2ServerResponse extends stream.Stream {
|
export class Http2ServerResponse extends stream.Writable {
|
||||||
constructor(stream: ServerHttp2Stream);
|
constructor(stream: ServerHttp2Stream);
|
||||||
|
|
||||||
readonly connection: net.Socket | tls.TLSSocket;
|
readonly connection: net.Socket | tls.TLSSocket;
|
||||||
|
0
node_modules/@types/node/https.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/https.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/index.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/index.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/inspector.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/inspector.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/module.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/module.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/net.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/net.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/os.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/os.d.ts
generated
vendored
Normal file → Executable file
11
node_modules/@types/node/package.json
generated
vendored
Normal file → Executable file
11
node_modules/@types/node/package.json
generated
vendored
Normal file → Executable file
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/node",
|
"name": "@types/node",
|
||||||
"version": "14.14.31",
|
"version": "14.14.37",
|
||||||
"description": "TypeScript definitions for Node.js",
|
"description": "TypeScript definitions for Node.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
@ -218,11 +218,6 @@
|
|||||||
"main": "",
|
"main": "",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<=3.4": {
|
|
||||||
"*": [
|
|
||||||
"ts3.4/*"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"<=3.6": {
|
"<=3.6": {
|
||||||
"*": [
|
"*": [
|
||||||
"ts3.6/*"
|
"ts3.6/*"
|
||||||
@ -236,6 +231,6 @@
|
|||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"typesPublisherContentHash": "e35e9f1e1be2150998638a2f9485b5e421a39bcfa3f02c37f4c39c69eeffef7b",
|
"typesPublisherContentHash": "f02c816ba8df5df4174feb1c57ce0d4ec89ba3eb1ee63a224ae7143e07aee695",
|
||||||
"typeScriptVersion": "3.4"
|
"typeScriptVersion": "3.5"
|
||||||
}
|
}
|
0
node_modules/@types/node/path.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/path.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/perf_hooks.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/perf_hooks.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/process.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/process.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/punycode.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/punycode.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/querystring.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/querystring.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/readline.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/readline.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/repl.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/repl.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/stream.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/stream.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/string_decoder.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/string_decoder.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/timers.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/timers.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/tls.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/tls.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/trace_events.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/trace_events.d.ts
generated
vendored
Normal file → Executable file
56
node_modules/@types/node/ts3.4/base.d.ts
generated
vendored
56
node_modules/@types/node/ts3.4/base.d.ts
generated
vendored
@ -1,56 +0,0 @@
|
|||||||
// NOTE: These definitions support NodeJS and TypeScript 3.2 - 3.4.
|
|
||||||
|
|
||||||
// NOTE: TypeScript version-specific augmentations can be found in the following paths:
|
|
||||||
// - ~/base.d.ts - Shared definitions common to all TypeScript versions
|
|
||||||
// - ~/index.d.ts - Definitions specific to TypeScript 2.1
|
|
||||||
// - ~/ts3.2/base.d.ts - Definitions specific to TypeScript 3.2
|
|
||||||
// - ~/ts3.2/index.d.ts - Definitions specific to TypeScript 3.2 with global and assert pulled in
|
|
||||||
|
|
||||||
// Reference required types from the default lib:
|
|
||||||
/// <reference lib="es2018" />
|
|
||||||
/// <reference lib="esnext.asynciterable" />
|
|
||||||
/// <reference lib="esnext.intl" />
|
|
||||||
/// <reference lib="esnext.bigint" />
|
|
||||||
|
|
||||||
// Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
|
|
||||||
|
|
||||||
/// <reference path="../globals.d.ts" />
|
|
||||||
/// <reference path="../async_hooks.d.ts" />
|
|
||||||
/// <reference path="../buffer.d.ts" />
|
|
||||||
/// <reference path="../child_process.d.ts" />
|
|
||||||
/// <reference path="../cluster.d.ts" />
|
|
||||||
/// <reference path="../console.d.ts" />
|
|
||||||
/// <reference path="../constants.d.ts" />
|
|
||||||
/// <reference path="../crypto.d.ts" />
|
|
||||||
/// <reference path="../dgram.d.ts" />
|
|
||||||
/// <reference path="../dns.d.ts" />
|
|
||||||
/// <reference path="../domain.d.ts" />
|
|
||||||
/// <reference path="../events.d.ts" />
|
|
||||||
/// <reference path="../fs.d.ts" />
|
|
||||||
/// <reference path="../fs/promises.d.ts" />
|
|
||||||
/// <reference path="../http.d.ts" />
|
|
||||||
/// <reference path="../http2.d.ts" />
|
|
||||||
/// <reference path="../https.d.ts" />
|
|
||||||
/// <reference path="../inspector.d.ts" />
|
|
||||||
/// <reference path="../module.d.ts" />
|
|
||||||
/// <reference path="../net.d.ts" />
|
|
||||||
/// <reference path="../os.d.ts" />
|
|
||||||
/// <reference path="../path.d.ts" />
|
|
||||||
/// <reference path="../perf_hooks.d.ts" />
|
|
||||||
/// <reference path="../process.d.ts" />
|
|
||||||
/// <reference path="../punycode.d.ts" />
|
|
||||||
/// <reference path="../querystring.d.ts" />
|
|
||||||
/// <reference path="../readline.d.ts" />
|
|
||||||
/// <reference path="../repl.d.ts" />
|
|
||||||
/// <reference path="../stream.d.ts" />
|
|
||||||
/// <reference path="../string_decoder.d.ts" />
|
|
||||||
/// <reference path="../timers.d.ts" />
|
|
||||||
/// <reference path="../tls.d.ts" />
|
|
||||||
/// <reference path="../trace_events.d.ts" />
|
|
||||||
/// <reference path="../tty.d.ts" />
|
|
||||||
/// <reference path="../url.d.ts" />
|
|
||||||
/// <reference path="../util.d.ts" />
|
|
||||||
/// <reference path="../v8.d.ts" />
|
|
||||||
/// <reference path="../vm.d.ts" />
|
|
||||||
/// <reference path="../worker_threads.d.ts" />
|
|
||||||
/// <reference path="../zlib.d.ts" />
|
|
1
node_modules/@types/node/ts3.4/globals.global.d.ts
generated
vendored
1
node_modules/@types/node/ts3.4/globals.global.d.ts
generated
vendored
@ -1 +0,0 @@
|
|||||||
declare var global: NodeJS.Global;
|
|
8
node_modules/@types/node/ts3.4/index.d.ts
generated
vendored
8
node_modules/@types/node/ts3.4/index.d.ts
generated
vendored
@ -1,8 +0,0 @@
|
|||||||
// NOTE: These definitions support NodeJS and TypeScript 3.2 - 3.4.
|
|
||||||
// This is required to enable globalThis support for global in ts3.5 without causing errors
|
|
||||||
// This is required to enable typing assert in ts3.7 without causing errors
|
|
||||||
// Typically type modifiations should be made in base.d.ts instead of here
|
|
||||||
|
|
||||||
/// <reference path="base.d.ts" />
|
|
||||||
/// <reference path="assert.d.ts" />
|
|
||||||
/// <reference path="globals.global.d.ts" />
|
|
0
node_modules/@types/node/ts3.4/assert.d.ts → node_modules/@types/node/ts3.6/assert.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/ts3.4/assert.d.ts → node_modules/@types/node/ts3.6/assert.d.ts
generated
vendored
Normal file → Executable file
49
node_modules/@types/node/ts3.6/base.d.ts
generated
vendored
Normal file → Executable file
49
node_modules/@types/node/ts3.6/base.d.ts
generated
vendored
Normal file → Executable file
@ -1,10 +1,10 @@
|
|||||||
// NOTE: These definitions support NodeJS and TypeScript 3.5.
|
// NOTE: These definitions support NodeJS and TypeScript 3.6 and earlier.
|
||||||
|
|
||||||
// NOTE: TypeScript version-specific augmentations can be found in the following paths:
|
// NOTE: TypeScript version-specific augmentations can be found in the following paths:
|
||||||
// - ~/base.d.ts - Shared definitions common to all TypeScript versions
|
// - ~/base.d.ts - Shared definitions common to all TypeScript versions
|
||||||
// - ~/index.d.ts - Definitions specific to TypeScript 2.1
|
// - ~/index.d.ts - Definitions specific to TypeScript 3.7 and above
|
||||||
// - ~/ts3.5/base.d.ts - Definitions specific to TypeScript 3.5
|
// - ~/ts3.5/base.d.ts - Definitions specific to TypeScript 3.6 and earlier
|
||||||
// - ~/ts3.5/index.d.ts - Definitions specific to TypeScript 3.5 with assert pulled in
|
// - ~/ts3.5/index.d.ts - Definitions specific to TypeScript 3.6 and earlier with assert pulled in
|
||||||
|
|
||||||
// Reference required types from the default lib:
|
// Reference required types from the default lib:
|
||||||
/// <reference lib="es2018" />
|
/// <reference lib="es2018" />
|
||||||
@ -13,7 +13,46 @@
|
|||||||
/// <reference lib="esnext.bigint" />
|
/// <reference lib="esnext.bigint" />
|
||||||
|
|
||||||
// Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
|
// Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
|
||||||
/// <reference path="../ts3.4/base.d.ts" />
|
/// <reference path="../globals.d.ts" />
|
||||||
|
/// <reference path="../async_hooks.d.ts" />
|
||||||
|
/// <reference path="../buffer.d.ts" />
|
||||||
|
/// <reference path="../child_process.d.ts" />
|
||||||
|
/// <reference path="../cluster.d.ts" />
|
||||||
|
/// <reference path="../console.d.ts" />
|
||||||
|
/// <reference path="../constants.d.ts" />
|
||||||
|
/// <reference path="../crypto.d.ts" />
|
||||||
|
/// <reference path="../dgram.d.ts" />
|
||||||
|
/// <reference path="../dns.d.ts" />
|
||||||
|
/// <reference path="../domain.d.ts" />
|
||||||
|
/// <reference path="../events.d.ts" />
|
||||||
|
/// <reference path="../fs.d.ts" />
|
||||||
|
/// <reference path="../fs/promises.d.ts" />
|
||||||
|
/// <reference path="../http.d.ts" />
|
||||||
|
/// <reference path="../http2.d.ts" />
|
||||||
|
/// <reference path="../https.d.ts" />
|
||||||
|
/// <reference path="../inspector.d.ts" />
|
||||||
|
/// <reference path="../module.d.ts" />
|
||||||
|
/// <reference path="../net.d.ts" />
|
||||||
|
/// <reference path="../os.d.ts" />
|
||||||
|
/// <reference path="../path.d.ts" />
|
||||||
|
/// <reference path="../perf_hooks.d.ts" />
|
||||||
|
/// <reference path="../process.d.ts" />
|
||||||
|
/// <reference path="../punycode.d.ts" />
|
||||||
|
/// <reference path="../querystring.d.ts" />
|
||||||
|
/// <reference path="../readline.d.ts" />
|
||||||
|
/// <reference path="../repl.d.ts" />
|
||||||
|
/// <reference path="../stream.d.ts" />
|
||||||
|
/// <reference path="../string_decoder.d.ts" />
|
||||||
|
/// <reference path="../timers.d.ts" />
|
||||||
|
/// <reference path="../tls.d.ts" />
|
||||||
|
/// <reference path="../trace_events.d.ts" />
|
||||||
|
/// <reference path="../tty.d.ts" />
|
||||||
|
/// <reference path="../url.d.ts" />
|
||||||
|
/// <reference path="../util.d.ts" />
|
||||||
|
/// <reference path="../v8.d.ts" />
|
||||||
|
/// <reference path="../vm.d.ts" />
|
||||||
|
/// <reference path="../worker_threads.d.ts" />
|
||||||
|
/// <reference path="../zlib.d.ts" />
|
||||||
|
|
||||||
// TypeScript 3.5-specific augmentations:
|
// TypeScript 3.5-specific augmentations:
|
||||||
/// <reference path="../globals.global.d.ts" />
|
/// <reference path="../globals.global.d.ts" />
|
||||||
|
2
node_modules/@types/node/ts3.6/index.d.ts
generated
vendored
Normal file → Executable file
2
node_modules/@types/node/ts3.6/index.d.ts
generated
vendored
Normal file → Executable file
@ -4,4 +4,4 @@
|
|||||||
|
|
||||||
/// <reference path="base.d.ts" />
|
/// <reference path="base.d.ts" />
|
||||||
|
|
||||||
/// <reference path="../ts3.4/assert.d.ts" />
|
/// <reference path="assert.d.ts" />
|
||||||
|
0
node_modules/@types/node/tty.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/tty.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/url.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/url.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/util.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/util.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/v8.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/v8.d.ts
generated
vendored
Normal file → Executable file
4
node_modules/@types/node/vm.d.ts
generated
vendored
Normal file → Executable file
4
node_modules/@types/node/vm.d.ts
generated
vendored
Normal file → Executable file
@ -99,6 +99,10 @@ declare module 'vm' {
|
|||||||
*/
|
*/
|
||||||
wasm?: boolean;
|
wasm?: boolean;
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* If set to `afterEvaluate`, microtasks will be run immediately after the script has run.
|
||||||
|
*/
|
||||||
|
microtaskMode?: 'afterEvaluate';
|
||||||
}
|
}
|
||||||
|
|
||||||
type MeasureMemoryMode = 'summary' | 'detailed';
|
type MeasureMemoryMode = 'summary' | 'detailed';
|
||||||
|
0
node_modules/@types/node/wasi.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/wasi.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/worker_threads.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/worker_threads.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/zlib.d.ts
generated
vendored
Normal file → Executable file
0
node_modules/@types/node/zlib.d.ts
generated
vendored
Normal file → Executable file
Loading…
Reference in New Issue
Block a user