@alanszp/eventbridge-client 10.0.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node_modules/@cspotcode/source-map-support/LICENSE.md +21 -0
- package/node_modules/@cspotcode/source-map-support/README.md +289 -0
- package/node_modules/@cspotcode/source-map-support/browser-source-map-support.js +114 -0
- package/node_modules/@cspotcode/source-map-support/package.json +50 -0
- package/node_modules/@cspotcode/source-map-support/register-hook-require.d.ts +7 -0
- package/node_modules/@cspotcode/source-map-support/register-hook-require.js +3 -0
- package/node_modules/@cspotcode/source-map-support/register.d.ts +7 -0
- package/node_modules/@cspotcode/source-map-support/register.js +1 -0
- package/node_modules/@cspotcode/source-map-support/source-map-support.d.ts +76 -0
- package/node_modules/@cspotcode/source-map-support/source-map-support.js +938 -0
- package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- package/node_modules/@jridgewell/trace-mapping/README.md +193 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +514 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +528 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +70 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +85 -0
- package/node_modules/@jridgewell/trace-mapping/package.json +70 -0
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +15 -0
- package/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/assert.d.ts +996 -0
- package/node_modules/@types/node/async_hooks.d.ts +539 -0
- package/node_modules/@types/node/buffer.d.ts +2362 -0
- package/node_modules/@types/node/child_process.d.ts +1540 -0
- package/node_modules/@types/node/cluster.d.ts +432 -0
- package/node_modules/@types/node/console.d.ts +415 -0
- package/node_modules/@types/node/constants.d.ts +19 -0
- package/node_modules/@types/node/crypto.d.ts +4487 -0
- package/node_modules/@types/node/dgram.d.ts +596 -0
- package/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
- package/node_modules/@types/node/dns/promises.d.ts +425 -0
- package/node_modules/@types/node/dns.d.ts +809 -0
- package/node_modules/@types/node/dom-events.d.ts +122 -0
- package/node_modules/@types/node/domain.d.ts +170 -0
- package/node_modules/@types/node/events.d.ts +879 -0
- package/node_modules/@types/node/fs/promises.d.ts +1239 -0
- package/node_modules/@types/node/fs.d.ts +4311 -0
- package/node_modules/@types/node/globals.d.ts +411 -0
- package/node_modules/@types/node/globals.global.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +1887 -0
- package/node_modules/@types/node/http2.d.ts +2382 -0
- package/node_modules/@types/node/https.d.ts +550 -0
- package/node_modules/@types/node/index.d.ts +88 -0
- package/node_modules/@types/node/inspector.d.ts +2747 -0
- package/node_modules/@types/node/module.d.ts +315 -0
- package/node_modules/@types/node/net.d.ts +949 -0
- package/node_modules/@types/node/os.d.ts +478 -0
- package/node_modules/@types/node/package.json +229 -0
- package/node_modules/@types/node/path.d.ts +191 -0
- package/node_modules/@types/node/perf_hooks.d.ts +645 -0
- package/node_modules/@types/node/process.d.ts +1561 -0
- package/node_modules/@types/node/punycode.d.ts +117 -0
- package/node_modules/@types/node/querystring.d.ts +141 -0
- package/node_modules/@types/node/readline/promises.d.ts +150 -0
- package/node_modules/@types/node/readline.d.ts +539 -0
- package/node_modules/@types/node/repl.d.ts +430 -0
- package/node_modules/@types/node/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/stream/promises.d.ts +83 -0
- package/node_modules/@types/node/stream/web.d.ts +366 -0
- package/node_modules/@types/node/stream.d.ts +1701 -0
- package/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/test.d.ts +1465 -0
- package/node_modules/@types/node/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/timers.d.ts +240 -0
- package/node_modules/@types/node/tls.d.ts +1210 -0
- package/node_modules/@types/node/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
- package/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
- package/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
- package/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
- package/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
- package/node_modules/@types/node/ts4.8/console.d.ts +415 -0
- package/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
- package/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
- package/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
- package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
- package/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
- package/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
- package/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
- package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
- package/node_modules/@types/node/ts4.8/events.d.ts +879 -0
- package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
- package/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
- package/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
- package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
- package/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
- package/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
- package/node_modules/@types/node/ts4.8/https.d.ts +550 -0
- package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
- package/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
- package/node_modules/@types/node/ts4.8/module.d.ts +315 -0
- package/node_modules/@types/node/ts4.8/net.d.ts +949 -0
- package/node_modules/@types/node/ts4.8/os.d.ts +478 -0
- package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
- package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
- package/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
- package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
- package/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
- package/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
- package/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
- package/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
- package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
- package/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
- package/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
- package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
- package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
- package/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
- package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
- package/node_modules/@types/node/ts4.8/url.d.ts +927 -0
- package/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
- package/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
- package/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
- package/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
- package/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
- package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
- package/node_modules/@types/node/tty.d.ts +208 -0
- package/node_modules/@types/node/url.d.ts +927 -0
- package/node_modules/@types/node/util.d.ts +2183 -0
- package/node_modules/@types/node/v8.d.ts +764 -0
- package/node_modules/@types/node/vm.d.ts +903 -0
- package/node_modules/@types/node/wasi.d.ts +179 -0
- package/node_modules/@types/node/worker_threads.d.ts +691 -0
- package/node_modules/@types/node/zlib.d.ts +517 -0
- package/package.json +4 -4
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import type { SourceMapSegment } from './sourcemap-segment';
|
|
2
|
+
import type { SourceMapV3, DecodedSourceMap, EncodedSourceMap, InvalidOriginalMapping, OriginalMapping, InvalidGeneratedMapping, GeneratedMapping, SourceMapInput, Needle, SourceNeedle, SourceMap, EachMapping } from './types';
|
|
3
|
+
export type { SourceMapSegment } from './sourcemap-segment';
|
|
4
|
+
export type { SourceMapInput, SectionedSourceMapInput, DecodedSourceMap, EncodedSourceMap, SectionedSourceMap, InvalidOriginalMapping, OriginalMapping as Mapping, OriginalMapping, InvalidGeneratedMapping, GeneratedMapping, EachMapping, } from './types';
|
|
5
|
+
export declare const LEAST_UPPER_BOUND = -1;
|
|
6
|
+
export declare const GREATEST_LOWER_BOUND = 1;
|
|
7
|
+
/**
|
|
8
|
+
* Returns the encoded (VLQ string) form of the SourceMap's mappings field.
|
|
9
|
+
*/
|
|
10
|
+
export declare let encodedMappings: (map: TraceMap) => EncodedSourceMap['mappings'];
|
|
11
|
+
/**
|
|
12
|
+
* Returns the decoded (array of lines of segments) form of the SourceMap's mappings field.
|
|
13
|
+
*/
|
|
14
|
+
export declare let decodedMappings: (map: TraceMap) => Readonly<DecodedSourceMap['mappings']>;
|
|
15
|
+
/**
|
|
16
|
+
* A low-level API to find the segment associated with a generated line/column (think, from a
|
|
17
|
+
* stack trace). Line and column here are 0-based, unlike `originalPositionFor`.
|
|
18
|
+
*/
|
|
19
|
+
export declare let traceSegment: (map: TraceMap, line: number, column: number) => Readonly<SourceMapSegment> | null;
|
|
20
|
+
/**
|
|
21
|
+
* A higher-level API to find the source/line/column associated with a generated line/column
|
|
22
|
+
* (think, from a stack trace). Line is 1-based, but column is 0-based, due to legacy behavior in
|
|
23
|
+
* `source-map` library.
|
|
24
|
+
*/
|
|
25
|
+
export declare let originalPositionFor: (map: TraceMap, needle: Needle) => OriginalMapping | InvalidOriginalMapping;
|
|
26
|
+
/**
|
|
27
|
+
* Finds the source/line/column directly after the mapping returned by originalPositionFor, provided
|
|
28
|
+
* the found mapping is from the same source and line as the originalPositionFor mapping.
|
|
29
|
+
*
|
|
30
|
+
* Eg, in the code `let id = 1`, `originalPositionAfter` could find the mapping associated with `1`
|
|
31
|
+
* using the same needle that would return `id` when calling `originalPositionFor`.
|
|
32
|
+
*/
|
|
33
|
+
export declare let generatedPositionFor: (map: TraceMap, needle: SourceNeedle) => GeneratedMapping | InvalidGeneratedMapping;
|
|
34
|
+
/**
|
|
35
|
+
* Iterates each mapping in generated position order.
|
|
36
|
+
*/
|
|
37
|
+
export declare let eachMapping: (map: TraceMap, cb: (mapping: EachMapping) => void) => void;
|
|
38
|
+
/**
|
|
39
|
+
* A helper that skips sorting of the input map's mappings array, which can be expensive for larger
|
|
40
|
+
* maps.
|
|
41
|
+
*/
|
|
42
|
+
export declare let presortedDecodedMap: (map: DecodedSourceMap, mapUrl?: string) => TraceMap;
|
|
43
|
+
/**
|
|
44
|
+
* Returns a sourcemap object (with decoded mappings) suitable for passing to a library that expects
|
|
45
|
+
* a sourcemap, or to JSON.stringify.
|
|
46
|
+
*/
|
|
47
|
+
export declare let decodedMap: (map: TraceMap) => Omit<DecodedSourceMap, 'mappings'> & {
|
|
48
|
+
mappings: readonly SourceMapSegment[][];
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Returns a sourcemap object (with encoded mappings) suitable for passing to a library that expects
|
|
52
|
+
* a sourcemap, or to JSON.stringify.
|
|
53
|
+
*/
|
|
54
|
+
export declare let encodedMap: (map: TraceMap) => EncodedSourceMap;
|
|
55
|
+
export { AnyMap } from './any-map';
|
|
56
|
+
export declare class TraceMap implements SourceMap {
|
|
57
|
+
version: SourceMapV3['version'];
|
|
58
|
+
file: SourceMapV3['file'];
|
|
59
|
+
names: SourceMapV3['names'];
|
|
60
|
+
sourceRoot: SourceMapV3['sourceRoot'];
|
|
61
|
+
sources: SourceMapV3['sources'];
|
|
62
|
+
sourcesContent: SourceMapV3['sourcesContent'];
|
|
63
|
+
resolvedSources: string[];
|
|
64
|
+
private _encoded;
|
|
65
|
+
private _decoded;
|
|
66
|
+
private _decodedMemo;
|
|
67
|
+
private _bySources;
|
|
68
|
+
private _bySourceMemos;
|
|
69
|
+
constructor(map: SourceMapInput, mapUrl?: string | null);
|
|
70
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import type { SourceMapSegment } from './sourcemap-segment';
|
|
2
|
+
import type { TraceMap } from './trace-mapping';
|
|
3
|
+
export interface SourceMapV3 {
|
|
4
|
+
file?: string | null;
|
|
5
|
+
names: string[];
|
|
6
|
+
sourceRoot?: string;
|
|
7
|
+
sources: (string | null)[];
|
|
8
|
+
sourcesContent?: (string | null)[];
|
|
9
|
+
version: 3;
|
|
10
|
+
}
|
|
11
|
+
export interface EncodedSourceMap extends SourceMapV3 {
|
|
12
|
+
mappings: string;
|
|
13
|
+
}
|
|
14
|
+
export interface DecodedSourceMap extends SourceMapV3 {
|
|
15
|
+
mappings: SourceMapSegment[][];
|
|
16
|
+
}
|
|
17
|
+
export interface Section {
|
|
18
|
+
offset: {
|
|
19
|
+
line: number;
|
|
20
|
+
column: number;
|
|
21
|
+
};
|
|
22
|
+
map: EncodedSourceMap | DecodedSourceMap | SectionedSourceMap;
|
|
23
|
+
}
|
|
24
|
+
export interface SectionedSourceMap {
|
|
25
|
+
file?: string | null;
|
|
26
|
+
sections: Section[];
|
|
27
|
+
version: 3;
|
|
28
|
+
}
|
|
29
|
+
export declare type OriginalMapping = {
|
|
30
|
+
source: string | null;
|
|
31
|
+
line: number;
|
|
32
|
+
column: number;
|
|
33
|
+
name: string | null;
|
|
34
|
+
};
|
|
35
|
+
export declare type InvalidOriginalMapping = {
|
|
36
|
+
source: null;
|
|
37
|
+
line: null;
|
|
38
|
+
column: null;
|
|
39
|
+
name: null;
|
|
40
|
+
};
|
|
41
|
+
export declare type GeneratedMapping = {
|
|
42
|
+
line: number;
|
|
43
|
+
column: number;
|
|
44
|
+
};
|
|
45
|
+
export declare type InvalidGeneratedMapping = {
|
|
46
|
+
line: null;
|
|
47
|
+
column: null;
|
|
48
|
+
};
|
|
49
|
+
export declare type SourceMapInput = string | EncodedSourceMap | DecodedSourceMap | TraceMap;
|
|
50
|
+
export declare type SectionedSourceMapInput = SourceMapInput | SectionedSourceMap;
|
|
51
|
+
export declare type Needle = {
|
|
52
|
+
line: number;
|
|
53
|
+
column: number;
|
|
54
|
+
bias?: 1 | -1;
|
|
55
|
+
};
|
|
56
|
+
export declare type SourceNeedle = {
|
|
57
|
+
source: string;
|
|
58
|
+
line: number;
|
|
59
|
+
column: number;
|
|
60
|
+
bias?: 1 | -1;
|
|
61
|
+
};
|
|
62
|
+
export declare type EachMapping = {
|
|
63
|
+
generatedLine: number;
|
|
64
|
+
generatedColumn: number;
|
|
65
|
+
source: null;
|
|
66
|
+
originalLine: null;
|
|
67
|
+
originalColumn: null;
|
|
68
|
+
name: null;
|
|
69
|
+
} | {
|
|
70
|
+
generatedLine: number;
|
|
71
|
+
generatedColumn: number;
|
|
72
|
+
source: string | null;
|
|
73
|
+
originalLine: number;
|
|
74
|
+
originalColumn: number;
|
|
75
|
+
name: string | null;
|
|
76
|
+
};
|
|
77
|
+
export declare abstract class SourceMap {
|
|
78
|
+
version: SourceMapV3['version'];
|
|
79
|
+
file: SourceMapV3['file'];
|
|
80
|
+
names: SourceMapV3['names'];
|
|
81
|
+
sourceRoot: SourceMapV3['sourceRoot'];
|
|
82
|
+
sources: SourceMapV3['sources'];
|
|
83
|
+
sourcesContent: SourceMapV3['sourcesContent'];
|
|
84
|
+
resolvedSources: SourceMapV3['sources'];
|
|
85
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jridgewell/trace-mapping",
|
|
3
|
+
"version": "0.3.9",
|
|
4
|
+
"description": "Trace the original position through a source map",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"source",
|
|
7
|
+
"map"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/trace-mapping.umd.js",
|
|
10
|
+
"module": "dist/trace-mapping.mjs",
|
|
11
|
+
"typings": "dist/types/trace-mapping.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"browser": "./dist/trace-mapping.umd.js",
|
|
18
|
+
"require": "./dist/trace-mapping.umd.js",
|
|
19
|
+
"import": "./dist/trace-mapping.mjs"
|
|
20
|
+
},
|
|
21
|
+
"./package.json": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
"author": "Justin Ridgewell <justin@ridgewell.name>",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/jridgewell/trace-mapping.git"
|
|
27
|
+
},
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"scripts": {
|
|
30
|
+
"benchmark": "run-s build:rollup benchmark:*",
|
|
31
|
+
"benchmark:install": "cd benchmark && npm install",
|
|
32
|
+
"benchmark:only": "node benchmark/index.mjs",
|
|
33
|
+
"build": "run-s -n build:*",
|
|
34
|
+
"build:rollup": "rollup -c rollup.config.js",
|
|
35
|
+
"build:ts": "tsc --project tsconfig.build.json",
|
|
36
|
+
"lint": "run-s -n lint:*",
|
|
37
|
+
"lint:prettier": "npm run test:lint:prettier -- --write",
|
|
38
|
+
"lint:ts": "npm run test:lint:ts -- --fix",
|
|
39
|
+
"prebuild": "rm -rf dist",
|
|
40
|
+
"prepublishOnly": "npm run preversion",
|
|
41
|
+
"preversion": "run-s test build",
|
|
42
|
+
"test": "run-s -n test:lint test:only",
|
|
43
|
+
"test:debug": "ava debug",
|
|
44
|
+
"test:lint": "run-s -n test:lint:*",
|
|
45
|
+
"test:lint:prettier": "prettier --check '{src,test}/**/*.ts' '**/*.md'",
|
|
46
|
+
"test:lint:ts": "eslint '{src,test}/**/*.ts'",
|
|
47
|
+
"test:only": "c8 ava",
|
|
48
|
+
"test:watch": "ava --watch"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@rollup/plugin-typescript": "8.3.0",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "5.10.0",
|
|
53
|
+
"@typescript-eslint/parser": "5.10.0",
|
|
54
|
+
"ava": "4.0.1",
|
|
55
|
+
"benchmark": "2.1.4",
|
|
56
|
+
"c8": "7.11.0",
|
|
57
|
+
"esbuild": "0.14.14",
|
|
58
|
+
"esbuild-node-loader": "0.6.4",
|
|
59
|
+
"eslint": "8.7.0",
|
|
60
|
+
"eslint-config-prettier": "8.3.0",
|
|
61
|
+
"npm-run-all": "4.1.5",
|
|
62
|
+
"prettier": "2.5.1",
|
|
63
|
+
"rollup": "2.64.0",
|
|
64
|
+
"typescript": "4.5.4"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"@jridgewell/resolve-uri": "^3.0.3",
|
|
68
|
+
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @types/node`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for node (https://nodejs.org/).
|
|
6
|
+
|
|
7
|
+
# Details
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
|
9
|
+
|
|
10
|
+
### Additional Details
|
|
11
|
+
* Last updated: Thu, 08 Feb 2024 20:35:44 GMT
|
|
12
|
+
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
|
+
|
|
14
|
+
# Credits
|
|
15
|
+
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nicolas Even](https://github.com/n-e), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [Yongsheng Zhang](https://github.com/ZYSzys), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), [Matteo Collina](https://github.com/mcollina), and [Dmitry Semigradsky](https://github.com/Semigradsky).
|