Update checked-in dependencies
This commit is contained in:
parent
9dcfde966d
commit
1895b29ac8
34 changed files with 200284 additions and 417950 deletions
12
node_modules/.package-lock.json
generated
vendored
12
node_modules/.package-lock.json
generated
vendored
|
|
@ -955,9 +955,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/uuid": {
|
"node_modules/@types/uuid": {
|
||||||
"version": "9.0.8",
|
"version": "10.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz",
|
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz",
|
||||||
"integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA=="
|
"integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ=="
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||||
"version": "7.13.1",
|
"version": "7.13.1",
|
||||||
|
|
@ -6011,9 +6011,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript": {
|
"node_modules/typescript": {
|
||||||
"version": "5.4.5",
|
"version": "5.5.2",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz",
|
||||||
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
|
"integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"bin": {
|
"bin": {
|
||||||
"tsc": "bin/tsc",
|
"tsc": "bin/tsc",
|
||||||
|
|
|
||||||
2
node_modules/@types/uuid/README.md
generated
vendored
2
node_modules/@types/uuid/README.md
generated
vendored
|
|
@ -8,7 +8,7 @@ This package contains type definitions for uuid (https://github.com/uuidjs/uuid)
|
||||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid.
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid.
|
||||||
|
|
||||||
### Additional Details
|
### Additional Details
|
||||||
* Last updated: Thu, 25 Jan 2024 23:07:19 GMT
|
* Last updated: Thu, 20 Jun 2024 21:07:25 GMT
|
||||||
* Dependencies: none
|
* Dependencies: none
|
||||||
|
|
||||||
# Credits
|
# Credits
|
||||||
|
|
|
||||||
7
node_modules/@types/uuid/index.d.mts
generated
vendored
7
node_modules/@types/uuid/index.d.mts
generated
vendored
|
|
@ -1,12 +1,19 @@
|
||||||
import uuid from "./index.js";
|
import uuid from "./index.js";
|
||||||
export import v1 = uuid.v1;
|
export import v1 = uuid.v1;
|
||||||
|
export import v1ToV6 = uuid.v1ToV6;
|
||||||
export import v3 = uuid.v3;
|
export import v3 = uuid.v3;
|
||||||
export import v4 = uuid.v4;
|
export import v4 = uuid.v4;
|
||||||
export import v5 = uuid.v5;
|
export import v5 = uuid.v5;
|
||||||
|
export import v6 = uuid.v6;
|
||||||
|
export import v6ToV1 = uuid.v6ToV1;
|
||||||
|
export import v7 = uuid.v7;
|
||||||
export import NIL = uuid.NIL;
|
export import NIL = uuid.NIL;
|
||||||
|
export import MAX = uuid.MAX;
|
||||||
export import version = uuid.version;
|
export import version = uuid.version;
|
||||||
export import validate = uuid.validate;
|
export import validate = uuid.validate;
|
||||||
export import stringify = uuid.stringify;
|
export import stringify = uuid.stringify;
|
||||||
export import parse = uuid.parse;
|
export import parse = uuid.parse;
|
||||||
export import V1Options = uuid.V1Options;
|
export import V1Options = uuid.V1Options;
|
||||||
export import V4Options = uuid.V4Options;
|
export import V4Options = uuid.V4Options;
|
||||||
|
export import V6Options = uuid.V6Options;
|
||||||
|
export import V7Options = uuid.V7Options;
|
||||||
|
|
|
||||||
27
node_modules/@types/uuid/index.d.ts
generated
vendored
27
node_modules/@types/uuid/index.d.ts
generated
vendored
|
|
@ -29,11 +29,22 @@ interface V1RngOptions extends V1BaseOptions, RngOptions {}
|
||||||
|
|
||||||
export type V1Options = V1RandomOptions | V1RngOptions;
|
export type V1Options = V1RandomOptions | V1RngOptions;
|
||||||
export type V4Options = RandomOptions | RngOptions;
|
export type V4Options = RandomOptions | RngOptions;
|
||||||
|
export type V6Options = V1Options;
|
||||||
|
|
||||||
|
interface V7BaseOptions {
|
||||||
|
msecs?: number | Date | undefined;
|
||||||
|
seq?: number;
|
||||||
|
}
|
||||||
|
export type V7Options = (RandomOptions | RngOptions) & V7BaseOptions;
|
||||||
|
|
||||||
|
type VToV = ((uuid: string) => string) & ((uuid: OutputBuffer) => Uint8Array);
|
||||||
|
|
||||||
type v1String = (options?: V1Options) => string;
|
type v1String = (options?: V1Options) => string;
|
||||||
type v1Buffer = <T extends OutputBuffer>(options: V1Options | null | undefined, buffer: T, offset?: number) => T;
|
type v1Buffer = <T extends OutputBuffer>(options: V1Options | null | undefined, buffer: T, offset?: number) => T;
|
||||||
type v1 = v1Buffer & v1String;
|
type v1 = v1Buffer & v1String;
|
||||||
|
|
||||||
|
type v1ToV6 = VToV;
|
||||||
|
|
||||||
type v4String = (options?: V4Options) => string;
|
type v4String = (options?: V4Options) => string;
|
||||||
type v4Buffer = <T extends OutputBuffer>(options: V4Options | null | undefined, buffer: T, offset?: number) => T;
|
type v4Buffer = <T extends OutputBuffer>(options: V4Options | null | undefined, buffer: T, offset?: number) => T;
|
||||||
type v4 = v4Buffer & v4String;
|
type v4 = v4Buffer & v4String;
|
||||||
|
|
@ -68,7 +79,18 @@ interface v5Static {
|
||||||
}
|
}
|
||||||
type v5 = v5Buffer & v5String & v5Static;
|
type v5 = v5Buffer & v5String & v5Static;
|
||||||
|
|
||||||
|
type v6String = (options?: V6Options) => string;
|
||||||
|
type v6Buffer = <T extends OutputBuffer>(options: V6Options | null | undefined, buffer: T, offset?: number) => T;
|
||||||
|
type v6 = v6Buffer & v6String;
|
||||||
|
|
||||||
|
type v6ToV1 = VToV;
|
||||||
|
|
||||||
|
type v7String = (options?: V7Options) => string;
|
||||||
|
type v7Buffer = <T extends OutputBuffer>(options: V7Options | null | undefined, buffer: T, offset?: number) => T;
|
||||||
|
type v7 = v7Buffer & v7String;
|
||||||
|
|
||||||
type NIL = string;
|
type NIL = string;
|
||||||
|
type MAX = string;
|
||||||
|
|
||||||
type parse = (uuid: string) => Uint8Array;
|
type parse = (uuid: string) => Uint8Array;
|
||||||
type stringify = (buffer: InputBuffer, offset?: number) => string;
|
type stringify = (buffer: InputBuffer, offset?: number) => string;
|
||||||
|
|
@ -76,11 +98,16 @@ type validate = (uuid: string) => boolean;
|
||||||
type version = (uuid: string) => number;
|
type version = (uuid: string) => number;
|
||||||
|
|
||||||
export const NIL: NIL;
|
export const NIL: NIL;
|
||||||
|
export const MAX: MAX;
|
||||||
export const parse: parse;
|
export const parse: parse;
|
||||||
export const stringify: stringify;
|
export const stringify: stringify;
|
||||||
export const v1: v1;
|
export const v1: v1;
|
||||||
|
export const v1ToV6: v1ToV6;
|
||||||
export const v3: v3;
|
export const v3: v3;
|
||||||
export const v4: v4;
|
export const v4: v4;
|
||||||
export const v5: v5;
|
export const v5: v5;
|
||||||
|
export const v6: v6;
|
||||||
|
export const v6ToV1: v6ToV1;
|
||||||
|
export const v7: v7;
|
||||||
export const validate: validate;
|
export const validate: validate;
|
||||||
export const version: version;
|
export const version: version;
|
||||||
|
|
|
||||||
6
node_modules/@types/uuid/package.json
generated
vendored
6
node_modules/@types/uuid/package.json
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@types/uuid",
|
"name": "@types/uuid",
|
||||||
"version": "9.0.8",
|
"version": "10.0.0",
|
||||||
"description": "TypeScript definitions for uuid",
|
"description": "TypeScript definitions for uuid",
|
||||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid",
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
@ -49,6 +49,6 @@
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"typesPublisherContentHash": "ee6ba7ad17fbbead7a508faf213a9ad0f49c12929e8c6b0f05fb35129bc72d61",
|
"typesPublisherContentHash": "08fbc5ff7d23aaac1e81b5acf98181d2544ce6ffd5578e9879e2a75f0c087d54",
|
||||||
"typeScriptVersion": "4.6"
|
"typeScriptVersion": "4.7"
|
||||||
}
|
}
|
||||||
2
node_modules/typescript/README.md
generated
vendored
2
node_modules/typescript/README.md
generated
vendored
|
|
@ -4,7 +4,7 @@
|
||||||
[](https://github.com/microsoft/TypeScript/actions?query=workflow%3ACI)
|
[](https://github.com/microsoft/TypeScript/actions?query=workflow%3ACI)
|
||||||
[](https://www.npmjs.com/package/typescript)
|
[](https://www.npmjs.com/package/typescript)
|
||||||
[](https://www.npmjs.com/package/typescript)
|
[](https://www.npmjs.com/package/typescript)
|
||||||
[](https://api.securityscorecards.dev/projects/github.com/microsoft/TypeScript)
|
[](https://securityscorecards.dev/viewer/?uri=github.com/microsoft/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).
|
[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).
|
||||||
|
|
|
||||||
5
node_modules/typescript/lib/lib.dom.asynciterable.d.ts
generated
vendored
5
node_modules/typescript/lib/lib.dom.asynciterable.d.ts
generated
vendored
|
|
@ -26,3 +26,8 @@ interface FileSystemDirectoryHandle {
|
||||||
keys(): AsyncIterableIterator<string>;
|
keys(): AsyncIterableIterator<string>;
|
||||||
values(): AsyncIterableIterator<FileSystemHandle>;
|
values(): AsyncIterableIterator<FileSystemHandle>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ReadableStream<R = any> {
|
||||||
|
[Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
|
||||||
|
values(options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
|
||||||
|
}
|
||||||
|
|
|
||||||
244
node_modules/typescript/lib/lib.dom.d.ts
generated
vendored
244
node_modules/typescript/lib/lib.dom.d.ts
generated
vendored
|
|
@ -219,6 +219,9 @@ interface ChannelSplitterOptions extends AudioNodeOptions {
|
||||||
interface CheckVisibilityOptions {
|
interface CheckVisibilityOptions {
|
||||||
checkOpacity?: boolean;
|
checkOpacity?: boolean;
|
||||||
checkVisibilityCSS?: boolean;
|
checkVisibilityCSS?: boolean;
|
||||||
|
contentVisibilityAuto?: boolean;
|
||||||
|
opacityProperty?: boolean;
|
||||||
|
visibilityProperty?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ClientQueryOptions {
|
interface ClientQueryOptions {
|
||||||
|
|
@ -285,6 +288,10 @@ interface ConstrainULongRange extends ULongRange {
|
||||||
ideal?: number;
|
ideal?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ContentVisibilityAutoStateChangeEventInit extends EventInit {
|
||||||
|
skipped?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
interface ConvolverOptions extends AudioNodeOptions {
|
interface ConvolverOptions extends AudioNodeOptions {
|
||||||
buffer?: AudioBuffer | null;
|
buffer?: AudioBuffer | null;
|
||||||
disableNormalization?: boolean;
|
disableNormalization?: boolean;
|
||||||
|
|
@ -574,6 +581,8 @@ interface GainOptions extends AudioNodeOptions {
|
||||||
|
|
||||||
interface GamepadEffectParameters {
|
interface GamepadEffectParameters {
|
||||||
duration?: number;
|
duration?: number;
|
||||||
|
leftTrigger?: number;
|
||||||
|
rightTrigger?: number;
|
||||||
startDelay?: number;
|
startDelay?: number;
|
||||||
strongMagnitude?: number;
|
strongMagnitude?: number;
|
||||||
weakMagnitude?: number;
|
weakMagnitude?: number;
|
||||||
|
|
@ -1376,8 +1385,8 @@ interface RTCIceCandidateInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RTCIceCandidatePair {
|
interface RTCIceCandidatePair {
|
||||||
local?: RTCIceCandidate;
|
local: RTCIceCandidate;
|
||||||
remote?: RTCIceCandidate;
|
remote: RTCIceCandidate;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RTCIceCandidatePairStats extends RTCStats {
|
interface RTCIceCandidatePairStats extends RTCStats {
|
||||||
|
|
@ -1637,6 +1646,17 @@ interface ReadableStreamGetReaderOptions {
|
||||||
mode?: ReadableStreamReaderMode;
|
mode?: ReadableStreamReaderMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ReadableStreamIteratorOptions {
|
||||||
|
/**
|
||||||
|
* Asynchronously iterates over the chunks in the stream's internal queue.
|
||||||
|
*
|
||||||
|
* Asynchronously iterating over the stream will lock it, preventing any other consumer from acquiring a reader. The lock will be released if the async iterator's return() method is called, e.g. by breaking out of the loop.
|
||||||
|
*
|
||||||
|
* By default, calling the async iterator's return() method will also cancel the stream. To prevent this, use the stream's values() method, passing true for the preventCancel option.
|
||||||
|
*/
|
||||||
|
preventCancel?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
interface ReadableStreamReadDoneResult<T> {
|
interface ReadableStreamReadDoneResult<T> {
|
||||||
done: true;
|
done: true;
|
||||||
value?: T;
|
value?: T;
|
||||||
|
|
@ -1768,21 +1788,22 @@ interface ScrollToOptions extends ScrollOptions {
|
||||||
interface SecurityPolicyViolationEventInit extends EventInit {
|
interface SecurityPolicyViolationEventInit extends EventInit {
|
||||||
blockedURI?: string;
|
blockedURI?: string;
|
||||||
columnNumber?: number;
|
columnNumber?: number;
|
||||||
disposition: SecurityPolicyViolationEventDisposition;
|
disposition?: SecurityPolicyViolationEventDisposition;
|
||||||
documentURI: string;
|
documentURI?: string;
|
||||||
effectiveDirective: string;
|
effectiveDirective?: string;
|
||||||
lineNumber?: number;
|
lineNumber?: number;
|
||||||
originalPolicy: string;
|
originalPolicy?: string;
|
||||||
referrer?: string;
|
referrer?: string;
|
||||||
sample?: string;
|
sample?: string;
|
||||||
sourceFile?: string;
|
sourceFile?: string;
|
||||||
statusCode: number;
|
statusCode?: number;
|
||||||
violatedDirective: string;
|
violatedDirective?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ShadowRootInit {
|
interface ShadowRootInit {
|
||||||
delegatesFocus?: boolean;
|
delegatesFocus?: boolean;
|
||||||
mode: ShadowRootMode;
|
mode: ShadowRootMode;
|
||||||
|
serializable?: boolean;
|
||||||
slotAssignment?: SlotAssignmentMode;
|
slotAssignment?: SlotAssignmentMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2207,6 +2228,8 @@ interface ARIAMixin {
|
||||||
ariaAtomic: string | null;
|
ariaAtomic: string | null;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
|
||||||
ariaAutoComplete: string | null;
|
ariaAutoComplete: string | null;
|
||||||
|
ariaBrailleLabel: string | null;
|
||||||
|
ariaBrailleRoleDescription: string | null;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) */
|
||||||
ariaBusy: string | null;
|
ariaBusy: string | null;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaChecked) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaChecked) */
|
||||||
|
|
@ -2339,6 +2362,8 @@ declare var AbortSignal: {
|
||||||
new(): AbortSignal;
|
new(): AbortSignal;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
|
||||||
abort(reason?: any): AbortSignal;
|
abort(reason?: any): AbortSignal;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
|
||||||
|
any(signals: AbortSignal[]): AbortSignal;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
|
||||||
timeout(milliseconds: number): AbortSignal;
|
timeout(milliseconds: number): AbortSignal;
|
||||||
};
|
};
|
||||||
|
|
@ -3788,6 +3813,16 @@ declare var CSSScale: {
|
||||||
new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
|
new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
interface CSSScopeRule extends CSSGroupingRule {
|
||||||
|
readonly end: string | null;
|
||||||
|
readonly start: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var CSSScopeRule: {
|
||||||
|
prototype: CSSScopeRule;
|
||||||
|
new(): CSSScopeRule;
|
||||||
|
};
|
||||||
|
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew) */
|
||||||
interface CSSSkew extends CSSTransformComponent {
|
interface CSSSkew extends CSSTransformComponent {
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax) */
|
||||||
|
|
@ -3823,6 +3858,15 @@ declare var CSSSkewY: {
|
||||||
new(ay: CSSNumericValue): CSSSkewY;
|
new(ay: CSSNumericValue): CSSSkewY;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStartingStyleRule) */
|
||||||
|
interface CSSStartingStyleRule extends CSSGroupingRule {
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var CSSStartingStyleRule: {
|
||||||
|
prototype: CSSStartingStyleRule;
|
||||||
|
new(): CSSStartingStyleRule;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
|
* An object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
|
||||||
*
|
*
|
||||||
|
|
@ -4048,6 +4092,7 @@ interface CSSStyleDeclaration {
|
||||||
clipRule: string;
|
clipRule: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color) */
|
||||||
color: string;
|
color: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-interpolation) */
|
||||||
colorInterpolation: string;
|
colorInterpolation: string;
|
||||||
colorInterpolationFilters: string;
|
colorInterpolationFilters: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-scheme) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-scheme) */
|
||||||
|
|
@ -4092,6 +4137,8 @@ interface CSSStyleDeclaration {
|
||||||
containerType: string;
|
containerType: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
|
||||||
content: string;
|
content: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content-visibility) */
|
||||||
|
contentVisibility: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
|
||||||
counterIncrement: string;
|
counterIncrement: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
|
||||||
|
|
@ -4593,6 +4640,8 @@ interface CSSStyleDeclaration {
|
||||||
textUnderlinePosition: string;
|
textUnderlinePosition: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
|
||||||
textWrap: string;
|
textWrap: string;
|
||||||
|
textWrapMode: string;
|
||||||
|
textWrapStyle: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
|
||||||
top: string;
|
top: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
|
||||||
|
|
@ -4607,6 +4656,8 @@ interface CSSStyleDeclaration {
|
||||||
transformStyle: string;
|
transformStyle: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition) */
|
||||||
transition: string;
|
transition: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-behavior) */
|
||||||
|
transitionBehavior: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay) */
|
||||||
transitionDelay: string;
|
transitionDelay: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration) */
|
||||||
|
|
@ -5028,6 +5079,8 @@ interface CSSStyleDeclaration {
|
||||||
webkitUserSelect: string;
|
webkitUserSelect: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space) */
|
||||||
whiteSpace: string;
|
whiteSpace: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space-collapse) */
|
||||||
|
whiteSpaceCollapse: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/widows) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/widows) */
|
||||||
widows: string;
|
widows: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/width) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/width) */
|
||||||
|
|
@ -5046,6 +5099,8 @@ interface CSSStyleDeclaration {
|
||||||
y: string;
|
y: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
|
||||||
zIndex: string;
|
zIndex: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/zoom) */
|
||||||
|
zoom: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority) */
|
||||||
getPropertyPriority(property: string): string;
|
getPropertyPriority(property: string): string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyValue) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyValue) */
|
||||||
|
|
@ -5809,6 +5864,17 @@ declare var ConstantSourceNode: {
|
||||||
new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode;
|
new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent) */
|
||||||
|
interface ContentVisibilityAutoStateChangeEvent extends Event {
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent/skipped) */
|
||||||
|
readonly skipped: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var ContentVisibilityAutoStateChangeEvent: {
|
||||||
|
prototype: ContentVisibilityAutoStateChangeEvent;
|
||||||
|
new(type: string, eventInitDict?: ContentVisibilityAutoStateChangeEventInit): ContentVisibilityAutoStateChangeEvent;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An AudioNode that performs a Linear Convolution on a given AudioBuffer, often used to achieve a reverb effect. A ConvolverNode always has exactly one input and one output.
|
* An AudioNode that performs a Linear Convolution on a given AudioBuffer, often used to achieve a reverb effect. A ConvolverNode always has exactly one input and one output.
|
||||||
*
|
*
|
||||||
|
|
@ -5970,6 +6036,16 @@ declare var CustomEvent: {
|
||||||
new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
|
new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomStateSet) */
|
||||||
|
interface CustomStateSet {
|
||||||
|
forEach(callbackfn: (value: string, key: string, parent: CustomStateSet) => void, thisArg?: any): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var CustomStateSet: {
|
||||||
|
prototype: CustomStateSet;
|
||||||
|
new(): CustomStateSet;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API.
|
* An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API.
|
||||||
*
|
*
|
||||||
|
|
@ -7158,6 +7234,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
||||||
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
|
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
|
||||||
createEvent(eventInterface: "CloseEvent"): CloseEvent;
|
createEvent(eventInterface: "CloseEvent"): CloseEvent;
|
||||||
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
|
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
|
||||||
|
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
|
||||||
createEvent(eventInterface: "CustomEvent"): CustomEvent;
|
createEvent(eventInterface: "CustomEvent"): CustomEvent;
|
||||||
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
|
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
|
||||||
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
|
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
|
||||||
|
|
@ -7419,6 +7496,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
||||||
declare var Document: {
|
declare var Document: {
|
||||||
prototype: Document;
|
prototype: Document;
|
||||||
new(): Document;
|
new(): Document;
|
||||||
|
parseHTMLUnsafe(html: string): Document;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -7869,6 +7947,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
||||||
setAttributeNode(attr: Attr): Attr | null;
|
setAttributeNode(attr: Attr): Attr | null;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) */
|
||||||
setAttributeNodeNS(attr: Attr): Attr | null;
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
||||||
|
setHTMLUnsafe(html: string): void;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) */
|
||||||
setPointerCapture(pointerId: number): void;
|
setPointerCapture(pointerId: number): void;
|
||||||
/**
|
/**
|
||||||
|
|
@ -7933,6 +8012,8 @@ interface ElementInternals extends ARIAMixin {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/shadowRoot)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/shadowRoot)
|
||||||
*/
|
*/
|
||||||
readonly shadowRoot: ShadowRoot | null;
|
readonly shadowRoot: ShadowRoot | null;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/states) */
|
||||||
|
readonly states: CustomStateSet;
|
||||||
/**
|
/**
|
||||||
* Returns the error message that would be shown to the user if internals's target element was to be checked for validity.
|
* Returns the error message that would be shown to the user if internals's target element was to be checked for validity.
|
||||||
*
|
*
|
||||||
|
|
@ -8711,7 +8792,6 @@ declare var GainNode: {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This Gamepad API interface defines an individual gamepad or other controller, allowing access to information such as button presses, axis positions, and id.
|
* This Gamepad API interface defines an individual gamepad or other controller, allowing access to information such as button presses, axis positions, and id.
|
||||||
* Available only in secure contexts.
|
|
||||||
*
|
*
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad)
|
||||||
*/
|
*/
|
||||||
|
|
@ -8730,7 +8810,7 @@ interface Gamepad {
|
||||||
readonly mapping: GamepadMappingType;
|
readonly mapping: GamepadMappingType;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
|
||||||
readonly timestamp: DOMHighResTimeStamp;
|
readonly timestamp: DOMHighResTimeStamp;
|
||||||
readonly vibrationActuator: GamepadHapticActuator | null;
|
readonly vibrationActuator: GamepadHapticActuator;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare var Gamepad: {
|
declare var Gamepad: {
|
||||||
|
|
@ -8740,7 +8820,6 @@ declare var Gamepad: {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An individual button of a gamepad or other controller, allowing access to the current state of different types of buttons available on the control device.
|
* An individual button of a gamepad or other controller, allowing access to the current state of different types of buttons available on the control device.
|
||||||
* Available only in secure contexts.
|
|
||||||
*
|
*
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton)
|
||||||
*/
|
*/
|
||||||
|
|
@ -8760,7 +8839,6 @@ declare var GamepadButton: {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This Gamepad API interface contains references to gamepads connected to the system, which is what the gamepad events Window.gamepadconnected and Window.gamepaddisconnected are fired in response to.
|
* This Gamepad API interface contains references to gamepads connected to the system, which is what the gamepad events Window.gamepadconnected and Window.gamepaddisconnected are fired in response to.
|
||||||
* Available only in secure contexts.
|
|
||||||
*
|
*
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent)
|
||||||
*/
|
*/
|
||||||
|
|
@ -8780,8 +8858,6 @@ declare var GamepadEvent: {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
|
||||||
*/
|
*/
|
||||||
interface GamepadHapticActuator {
|
interface GamepadHapticActuator {
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/type) */
|
|
||||||
readonly type: GamepadHapticActuatorType;
|
|
||||||
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
|
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
|
||||||
reset(): Promise<GamepadHapticsResult>;
|
reset(): Promise<GamepadHapticsResult>;
|
||||||
}
|
}
|
||||||
|
|
@ -9492,6 +9568,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
|
||||||
*/
|
*/
|
||||||
name: string;
|
name: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping) */
|
||||||
ping: string;
|
ping: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy) */
|
||||||
referrerPolicy: string;
|
referrerPolicy: string;
|
||||||
|
|
@ -9569,6 +9646,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
|
||||||
*/
|
*/
|
||||||
noHref: boolean;
|
noHref: boolean;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping) */
|
||||||
ping: string;
|
ping: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy) */
|
||||||
referrerPolicy: string;
|
referrerPolicy: string;
|
||||||
|
|
@ -10164,7 +10242,11 @@ declare var HTMLElement: {
|
||||||
interface HTMLEmbedElement extends HTMLElement {
|
interface HTMLEmbedElement extends HTMLElement {
|
||||||
/** @deprecated */
|
/** @deprecated */
|
||||||
align: string;
|
align: string;
|
||||||
/** Sets or retrieves the height of the object. */
|
/**
|
||||||
|
* Sets or retrieves the height of the object.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/height)
|
||||||
|
*/
|
||||||
height: string;
|
height: string;
|
||||||
/**
|
/**
|
||||||
* Sets or retrieves the name of the object.
|
* Sets or retrieves the name of the object.
|
||||||
|
|
@ -10174,7 +10256,11 @@ interface HTMLEmbedElement extends HTMLElement {
|
||||||
/** Sets or retrieves a URL to be loaded by the object. */
|
/** Sets or retrieves a URL to be loaded by the object. */
|
||||||
src: string;
|
src: string;
|
||||||
type: string;
|
type: string;
|
||||||
/** Sets or retrieves the width of the object. */
|
/**
|
||||||
|
* Sets or retrieves the width of the object.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)
|
||||||
|
*/
|
||||||
width: string;
|
width: string;
|
||||||
getSVGDocument(): Document | null;
|
getSVGDocument(): Document | null;
|
||||||
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
|
@ -10747,6 +10833,7 @@ interface HTMLIFrameElement extends HTMLElement {
|
||||||
*/
|
*/
|
||||||
align: string;
|
align: string;
|
||||||
allow: string;
|
allow: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allowFullscreen) */
|
||||||
allowFullscreen: boolean;
|
allowFullscreen: boolean;
|
||||||
/**
|
/**
|
||||||
* Retrieves the document object of the page or frame.
|
* Retrieves the document object of the page or frame.
|
||||||
|
|
@ -10773,6 +10860,7 @@ interface HTMLIFrameElement extends HTMLElement {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
|
||||||
*/
|
*/
|
||||||
height: string;
|
height: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
|
||||||
loading: string;
|
loading: string;
|
||||||
/**
|
/**
|
||||||
* Sets or retrieves a URI to a long description of the object.
|
* Sets or retrieves a URI to a long description of the object.
|
||||||
|
|
@ -11012,7 +11100,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
||||||
checked: boolean;
|
checked: boolean;
|
||||||
/** Sets or retrieves the state of the check box or radio button. */
|
/** Sets or retrieves the state of the check box or radio button. */
|
||||||
defaultChecked: boolean;
|
defaultChecked: boolean;
|
||||||
/** Sets or retrieves the initial contents of the object. */
|
/**
|
||||||
|
* Sets or retrieves the initial contents of the object.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultValue)
|
||||||
|
*/
|
||||||
defaultValue: string;
|
defaultValue: string;
|
||||||
dirName: string;
|
dirName: string;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
|
||||||
|
|
@ -11071,12 +11163,25 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)
|
||||||
*/
|
*/
|
||||||
readonly list: HTMLDataListElement | null;
|
readonly list: HTMLDataListElement | null;
|
||||||
/** Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */
|
/**
|
||||||
|
* Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/max)
|
||||||
|
*/
|
||||||
max: string;
|
max: string;
|
||||||
/** Sets or retrieves the maximum number of characters that the user can enter in a text control. */
|
/**
|
||||||
|
* Sets or retrieves the maximum number of characters that the user can enter in a text control.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)
|
||||||
|
*/
|
||||||
maxLength: number;
|
maxLength: number;
|
||||||
/** Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field. */
|
/**
|
||||||
|
* Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/min)
|
||||||
|
*/
|
||||||
min: string;
|
min: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength) */
|
||||||
minLength: number;
|
minLength: number;
|
||||||
/**
|
/**
|
||||||
* Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
|
* Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
|
||||||
|
|
@ -11107,16 +11212,28 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
||||||
required: boolean;
|
required: boolean;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection) */
|
||||||
selectionDirection: "forward" | "backward" | "none" | null;
|
selectionDirection: "forward" | "backward" | "none" | null;
|
||||||
/** Gets or sets the end position or offset of a text selection. */
|
/**
|
||||||
|
* Gets or sets the end position or offset of a text selection.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)
|
||||||
|
*/
|
||||||
selectionEnd: number | null;
|
selectionEnd: number | null;
|
||||||
/** Gets or sets the starting position or offset of a text selection. */
|
/**
|
||||||
|
* Gets or sets the starting position or offset of a text selection.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionStart)
|
||||||
|
*/
|
||||||
selectionStart: number | null;
|
selectionStart: number | null;
|
||||||
size: number;
|
size: number;
|
||||||
/** The address or URL of the a media resource that is to be considered. */
|
/** The address or URL of the a media resource that is to be considered. */
|
||||||
src: string;
|
src: string;
|
||||||
/** Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field. */
|
/** Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field. */
|
||||||
step: string;
|
step: string;
|
||||||
/** Returns the content type of the object. */
|
/**
|
||||||
|
* Returns the content type of the object.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/type)
|
||||||
|
*/
|
||||||
type: string;
|
type: string;
|
||||||
/**
|
/**
|
||||||
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
|
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
|
||||||
|
|
@ -11135,7 +11252,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)
|
||||||
*/
|
*/
|
||||||
readonly validity: ValidityState;
|
readonly validity: ValidityState;
|
||||||
/** Returns the value of the data at the cursor's current position. */
|
/**
|
||||||
|
* Returns the value of the data at the cursor's current position.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/value)
|
||||||
|
*/
|
||||||
value: string;
|
value: string;
|
||||||
/** Returns a Date object representing the form control's value, if applicable; otherwise, returns null. Can be set, to change the value. Throws an "InvalidStateError" DOMException if the control isn't date- or time-based. */
|
/** Returns a Date object representing the form control's value, if applicable; otherwise, returns null. Can be set, to change the value. Throws an "InvalidStateError" DOMException if the control isn't date- or time-based. */
|
||||||
valueAsDate: Date | null;
|
valueAsDate: Date | null;
|
||||||
|
|
@ -11695,16 +11816,31 @@ declare var HTMLMenuElement: {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement)
|
||||||
*/
|
*/
|
||||||
interface HTMLMetaElement extends HTMLElement {
|
interface HTMLMetaElement extends HTMLElement {
|
||||||
/** Gets or sets meta-information to associate with httpEquiv or name. */
|
/**
|
||||||
|
* Gets or sets meta-information to associate with httpEquiv or name.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/content)
|
||||||
|
*/
|
||||||
content: string;
|
content: string;
|
||||||
/** Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header. */
|
/**
|
||||||
|
* Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/httpEquiv)
|
||||||
|
*/
|
||||||
httpEquiv: string;
|
httpEquiv: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/media) */
|
||||||
media: string;
|
media: string;
|
||||||
/** Sets or retrieves the value specified in the content attribute of the meta object. */
|
/**
|
||||||
|
* Sets or retrieves the value specified in the content attribute of the meta object.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/name)
|
||||||
|
*/
|
||||||
name: string;
|
name: string;
|
||||||
/**
|
/**
|
||||||
* Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.
|
* Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.
|
||||||
* @deprecated
|
* @deprecated
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/scheme)
|
||||||
*/
|
*/
|
||||||
scheme: string;
|
scheme: string;
|
||||||
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
|
@ -11916,6 +12052,7 @@ interface HTMLObjectElement extends HTMLElement {
|
||||||
type: string;
|
type: string;
|
||||||
/**
|
/**
|
||||||
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
|
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
|
||||||
|
* @deprecated
|
||||||
*
|
*
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
|
||||||
*/
|
*/
|
||||||
|
|
@ -12470,7 +12607,7 @@ interface HTMLSelectElement extends HTMLElement {
|
||||||
*
|
*
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)
|
||||||
*/
|
*/
|
||||||
readonly type: string;
|
readonly type: "select-one" | "select-multiple";
|
||||||
/**
|
/**
|
||||||
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
|
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
|
||||||
*
|
*
|
||||||
|
|
@ -12582,6 +12719,7 @@ declare var HTMLSlotElement: {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement)
|
||||||
*/
|
*/
|
||||||
interface HTMLSourceElement extends HTMLElement {
|
interface HTMLSourceElement extends HTMLElement {
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
|
||||||
height: number;
|
height: number;
|
||||||
/**
|
/**
|
||||||
* Gets or sets the intended media type of the media source.
|
* Gets or sets the intended media type of the media source.
|
||||||
|
|
@ -12605,6 +12743,7 @@ interface HTMLSourceElement extends HTMLElement {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
|
||||||
*/
|
*/
|
||||||
type: string;
|
type: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
|
||||||
width: number;
|
width: number;
|
||||||
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
|
@ -13246,7 +13385,11 @@ interface HTMLTextAreaElement extends HTMLElement {
|
||||||
selectionStart: number;
|
selectionStart: number;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
|
||||||
readonly textLength: number;
|
readonly textLength: number;
|
||||||
/** Retrieves the type of control. */
|
/**
|
||||||
|
* Retrieves the type of control.
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/type)
|
||||||
|
*/
|
||||||
readonly type: string;
|
readonly type: string;
|
||||||
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
|
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
|
||||||
readonly validationMessage: string;
|
readonly validationMessage: string;
|
||||||
|
|
@ -13469,11 +13612,13 @@ interface HTMLVideoElement extends HTMLMediaElement {
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/width)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/width)
|
||||||
*/
|
*/
|
||||||
width: number;
|
width: number;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/cancelVideoFrameCallback) */
|
||||||
cancelVideoFrameCallback(handle: number): void;
|
cancelVideoFrameCallback(handle: number): void;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality) */
|
||||||
getVideoPlaybackQuality(): VideoPlaybackQuality;
|
getVideoPlaybackQuality(): VideoPlaybackQuality;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestPictureInPicture) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestPictureInPicture) */
|
||||||
requestPictureInPicture(): Promise<PictureInPictureWindow>;
|
requestPictureInPicture(): Promise<PictureInPictureWindow>;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestVideoFrameCallback) */
|
||||||
requestVideoFrameCallback(callback: VideoFrameRequestCallback): number;
|
requestVideoFrameCallback(callback: VideoFrameRequestCallback): number;
|
||||||
addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
|
@ -14555,6 +14700,29 @@ declare var KeyframeEffect: {
|
||||||
new(source: KeyframeEffect): KeyframeEffect;
|
new(source: KeyframeEffect): KeyframeEffect;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint) */
|
||||||
|
interface LargestContentfulPaint extends PerformanceEntry {
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/element) */
|
||||||
|
readonly element: Element | null;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/id) */
|
||||||
|
readonly id: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
|
||||||
|
readonly loadTime: DOMHighResTimeStamp;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
|
||||||
|
readonly renderTime: DOMHighResTimeStamp;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
|
||||||
|
readonly size: number;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
|
||||||
|
readonly url: string;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/toJSON) */
|
||||||
|
toJSON(): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var LargestContentfulPaint: {
|
||||||
|
prototype: LargestContentfulPaint;
|
||||||
|
new(): LargestContentfulPaint;
|
||||||
|
};
|
||||||
|
|
||||||
interface LinkStyle {
|
interface LinkStyle {
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
|
||||||
readonly sheet: CSSStyleSheet | null;
|
readonly sheet: CSSStyleSheet | null;
|
||||||
|
|
@ -21392,6 +21560,8 @@ interface ShadowRootEventMap {
|
||||||
|
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot) */
|
||||||
interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
|
interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/clonable) */
|
||||||
|
readonly clonable: boolean;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus) */
|
||||||
readonly delegatesFocus: boolean;
|
readonly delegatesFocus: boolean;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host) */
|
||||||
|
|
@ -21401,6 +21571,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
|
||||||
onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
|
onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
|
||||||
readonly slotAssignment: SlotAssignmentMode;
|
readonly slotAssignment: SlotAssignmentMode;
|
||||||
|
setHTMLUnsafe(html: string): void;
|
||||||
/** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
|
/** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
|
||||||
addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
||||||
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
||||||
|
|
@ -25921,7 +26092,11 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
||||||
readonly window: Window & typeof globalThis;
|
readonly window: Window & typeof globalThis;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
|
||||||
alert(message?: any): void;
|
alert(message?: any): void;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
|
/**
|
||||||
|
* @deprecated
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
|
||||||
|
*/
|
||||||
blur(): void;
|
blur(): void;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
|
||||||
cancelIdleCallback(handle: number): void;
|
cancelIdleCallback(handle: number): void;
|
||||||
|
|
@ -27546,7 +27721,11 @@ declare var visualViewport: VisualViewport | null;
|
||||||
declare var window: Window & typeof globalThis;
|
declare var window: Window & typeof globalThis;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
|
||||||
declare function alert(message?: any): void;
|
declare function alert(message?: any): void;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
|
/**
|
||||||
|
* @deprecated
|
||||||
|
*
|
||||||
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
|
||||||
|
*/
|
||||||
declare function blur(): void;
|
declare function blur(): void;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
|
||||||
declare function cancelIdleCallback(handle: number): void;
|
declare function cancelIdleCallback(handle: number): void;
|
||||||
|
|
@ -28293,8 +28472,7 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
|
||||||
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
|
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
|
||||||
type FontFaceSetLoadStatus = "loaded" | "loading";
|
type FontFaceSetLoadStatus = "loaded" | "loading";
|
||||||
type FullscreenNavigationUI = "auto" | "hide" | "show";
|
type FullscreenNavigationUI = "auto" | "hide" | "show";
|
||||||
type GamepadHapticActuatorType = "vibration";
|
type GamepadHapticEffectType = "dual-rumble" | "trigger-rumble";
|
||||||
type GamepadHapticEffectType = "dual-rumble";
|
|
||||||
type GamepadHapticsResult = "complete" | "preempted";
|
type GamepadHapticsResult = "complete" | "preempted";
|
||||||
type GamepadMappingType = "" | "standard" | "xr-standard";
|
type GamepadMappingType = "" | "standard" | "xr-standard";
|
||||||
type GlobalCompositeOperation = "color" | "color-burn" | "color-dodge" | "copy" | "darken" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "lighter" | "luminosity" | "multiply" | "overlay" | "saturation" | "screen" | "soft-light" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
|
type GlobalCompositeOperation = "color" | "color-burn" | "color-dodge" | "copy" | "darken" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "lighter" | "luminosity" | "multiply" | "overlay" | "saturation" | "screen" | "soft-light" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
|
||||||
|
|
|
||||||
8
node_modules/typescript/lib/lib.dom.iterable.d.ts
generated
vendored
8
node_modules/typescript/lib/lib.dom.iterable.d.ts
generated
vendored
|
|
@ -20,6 +20,11 @@ and limitations under the License.
|
||||||
/// Window Iterable APIs
|
/// Window Iterable APIs
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
|
|
||||||
|
interface AbortSignal {
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
|
||||||
|
any(signals: Iterable<AbortSignal>): AbortSignal;
|
||||||
|
}
|
||||||
|
|
||||||
interface AudioParam {
|
interface AudioParam {
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime) */
|
||||||
setValueCurveAtTime(values: Iterable<number>, startTime: number, duration: number): AudioParam;
|
setValueCurveAtTime(values: Iterable<number>, startTime: number, duration: number): AudioParam;
|
||||||
|
|
@ -83,6 +88,9 @@ interface CanvasPathDrawingStyles {
|
||||||
setLineDash(segments: Iterable<number>): void;
|
setLineDash(segments: Iterable<number>): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface CustomStateSet extends Set<string> {
|
||||||
|
}
|
||||||
|
|
||||||
interface DOMRectList {
|
interface DOMRectList {
|
||||||
[Symbol.iterator](): IterableIterator<DOMRect>;
|
[Symbol.iterator](): IterableIterator<DOMRect>;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
40
node_modules/typescript/lib/lib.es2015.core.d.ts
generated
vendored
40
node_modules/typescript/lib/lib.es2015.core.d.ts
generated
vendored
|
|
@ -60,6 +60,8 @@ interface Array<T> {
|
||||||
* @param end If not specified, length of the this object is used as its default value.
|
* @param end If not specified, length of the this object is used as its default value.
|
||||||
*/
|
*/
|
||||||
copyWithin(target: number, start: number, end?: number): this;
|
copyWithin(target: number, start: number, end?: number): this;
|
||||||
|
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ArrayConstructor {
|
interface ArrayConstructor {
|
||||||
|
|
@ -360,6 +362,8 @@ interface ReadonlyArray<T> {
|
||||||
* predicate. If it is not provided, undefined is used instead.
|
* predicate. If it is not provided, undefined is used instead.
|
||||||
*/
|
*/
|
||||||
findIndex(predicate: (value: T, index: number, obj: readonly T[]) => unknown, thisArg?: any): number;
|
findIndex(predicate: (value: T, index: number, obj: readonly T[]) => unknown, thisArg?: any): number;
|
||||||
|
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RegExp {
|
interface RegExp {
|
||||||
|
|
@ -555,3 +559,39 @@ interface StringConstructor {
|
||||||
*/
|
*/
|
||||||
raw(template: { raw: readonly string[] | ArrayLike<string>; }, ...substitutions: any[]): string;
|
raw(template: { raw: readonly string[] | ArrayLike<string>; }, ...substitutions: any[]): string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface Int8Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Uint8Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Uint8ClampedArray {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Int16Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Uint16Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Int32Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Uint32Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Float32Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Float64Array {
|
||||||
|
toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
}
|
||||||
|
|
|
||||||
20
node_modules/typescript/lib/lib.es2018.intl.d.ts
generated
vendored
20
node_modules/typescript/lib/lib.es2018.intl.d.ts
generated
vendored
|
|
@ -55,10 +55,22 @@ declare namespace Intl {
|
||||||
|
|
||||||
const PluralRules: PluralRulesConstructor;
|
const PluralRules: PluralRulesConstructor;
|
||||||
|
|
||||||
// We can only have one definition for 'type' in TypeScript, and so you can learn where the keys come from here:
|
interface NumberFormatPartTypeRegistry {
|
||||||
type ES2018NumberFormatPartType = "literal" | "nan" | "infinity" | "percent" | "integer" | "group" | "decimal" | "fraction" | "plusSign" | "minusSign" | "percentSign" | "currency" | "code" | "symbol" | "name";
|
literal: never;
|
||||||
type ES2020NumberFormatPartType = "compact" | "exponentInteger" | "exponentMinusSign" | "exponentSeparator" | "unit" | "unknown";
|
nan: never;
|
||||||
type NumberFormatPartTypes = ES2018NumberFormatPartType | ES2020NumberFormatPartType;
|
infinity: never;
|
||||||
|
percent: never;
|
||||||
|
integer: never;
|
||||||
|
group: never;
|
||||||
|
decimal: never;
|
||||||
|
fraction: never;
|
||||||
|
plusSign: never;
|
||||||
|
minusSign: never;
|
||||||
|
percentSign: never;
|
||||||
|
currency: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
type NumberFormatPartTypes = keyof NumberFormatPartTypeRegistry;
|
||||||
|
|
||||||
interface NumberFormatPart {
|
interface NumberFormatPart {
|
||||||
type: NumberFormatPartTypes;
|
type: NumberFormatPartTypes;
|
||||||
|
|
|
||||||
2
node_modules/typescript/lib/lib.es2019.intl.d.ts
generated
vendored
2
node_modules/typescript/lib/lib.es2019.intl.d.ts
generated
vendored
|
|
@ -18,6 +18,6 @@ and limitations under the License.
|
||||||
|
|
||||||
declare namespace Intl {
|
declare namespace Intl {
|
||||||
interface DateTimeFormatPartTypesRegistry {
|
interface DateTimeFormatPartTypesRegistry {
|
||||||
unknown: any;
|
unknown: never;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
5
node_modules/typescript/lib/lib.es2020.bigint.d.ts
generated
vendored
5
node_modules/typescript/lib/lib.es2020.bigint.d.ts
generated
vendored
|
|
@ -369,7 +369,7 @@ interface BigInt64Array {
|
||||||
subarray(begin?: number, end?: number): BigInt64Array;
|
subarray(begin?: number, end?: number): BigInt64Array;
|
||||||
|
|
||||||
/** Converts the array to a string by using the current locale. */
|
/** Converts the array to a string by using the current locale. */
|
||||||
toLocaleString(): string;
|
toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
|
||||||
/** Returns a string representation of the array. */
|
/** Returns a string representation of the array. */
|
||||||
toString(): string;
|
toString(): string;
|
||||||
|
|
@ -641,7 +641,7 @@ interface BigUint64Array {
|
||||||
subarray(begin?: number, end?: number): BigUint64Array;
|
subarray(begin?: number, end?: number): BigUint64Array;
|
||||||
|
|
||||||
/** Converts the array to a string by using the current locale. */
|
/** Converts the array to a string by using the current locale. */
|
||||||
toLocaleString(): string;
|
toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;
|
||||||
|
|
||||||
/** Returns a string representation of the array. */
|
/** Returns a string representation of the array. */
|
||||||
toString(): string;
|
toString(): string;
|
||||||
|
|
@ -723,6 +723,5 @@ interface DataView {
|
||||||
declare namespace Intl {
|
declare namespace Intl {
|
||||||
interface NumberFormat {
|
interface NumberFormat {
|
||||||
format(value: number | bigint): string;
|
format(value: number | bigint): string;
|
||||||
resolvedOptions(): ResolvedNumberFormatOptions;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
39
node_modules/typescript/lib/lib.es2020.intl.d.ts
generated
vendored
39
node_modules/typescript/lib/lib.es2020.intl.d.ts
generated
vendored
|
|
@ -241,24 +241,49 @@ declare namespace Intl {
|
||||||
): UnicodeBCP47LocaleIdentifier[];
|
): UnicodeBCP47LocaleIdentifier[];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
interface NumberFormatOptionsStyleRegistry {
|
||||||
|
unit: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumberFormatOptionsCurrencyDisplayRegistry {
|
||||||
|
narrowSymbol: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumberFormatOptionsSignDisplayRegistry {
|
||||||
|
auto: never;
|
||||||
|
never: never;
|
||||||
|
always: never;
|
||||||
|
exceptZero: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
type NumberFormatOptionsSignDisplay = keyof NumberFormatOptionsSignDisplayRegistry;
|
||||||
|
|
||||||
interface NumberFormatOptions {
|
interface NumberFormatOptions {
|
||||||
|
numberingSystem?: string | undefined;
|
||||||
compactDisplay?: "short" | "long" | undefined;
|
compactDisplay?: "short" | "long" | undefined;
|
||||||
notation?: "standard" | "scientific" | "engineering" | "compact" | undefined;
|
notation?: "standard" | "scientific" | "engineering" | "compact" | undefined;
|
||||||
signDisplay?: "auto" | "never" | "always" | "exceptZero" | undefined;
|
signDisplay?: NumberFormatOptionsSignDisplay | undefined;
|
||||||
unit?: string | undefined;
|
unit?: string | undefined;
|
||||||
unitDisplay?: "short" | "long" | "narrow" | undefined;
|
unitDisplay?: "short" | "long" | "narrow" | undefined;
|
||||||
currencyDisplay?: string | undefined;
|
currencySign?: "standard" | "accounting" | undefined;
|
||||||
currencySign?: string | undefined;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ResolvedNumberFormatOptions {
|
interface ResolvedNumberFormatOptions {
|
||||||
compactDisplay?: "short" | "long";
|
compactDisplay?: "short" | "long";
|
||||||
notation?: "standard" | "scientific" | "engineering" | "compact";
|
notation: "standard" | "scientific" | "engineering" | "compact";
|
||||||
signDisplay?: "auto" | "never" | "always" | "exceptZero";
|
signDisplay: NumberFormatOptionsSignDisplay;
|
||||||
unit?: string;
|
unit?: string;
|
||||||
unitDisplay?: "short" | "long" | "narrow";
|
unitDisplay?: "short" | "long" | "narrow";
|
||||||
currencyDisplay?: string;
|
currencySign?: "standard" | "accounting";
|
||||||
currencySign?: string;
|
}
|
||||||
|
|
||||||
|
interface NumberFormatPartTypeRegistry {
|
||||||
|
compact: never;
|
||||||
|
exponentInteger: never;
|
||||||
|
exponentMinusSign: never;
|
||||||
|
exponentSeparator: never;
|
||||||
|
unit: never;
|
||||||
|
unknown: never;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DateTimeFormatOptions {
|
interface DateTimeFormatOptions {
|
||||||
|
|
|
||||||
2
node_modules/typescript/lib/lib.es2021.weakref.d.ts
generated
vendored
2
node_modules/typescript/lib/lib.es2021.weakref.d.ts
generated
vendored
|
|
@ -60,7 +60,7 @@ interface FinalizationRegistry<T> {
|
||||||
* @param unregisterToken The token that was used as the unregisterToken argument when calling
|
* @param unregisterToken The token that was used as the unregisterToken argument when calling
|
||||||
* register to register the target value.
|
* register to register the target value.
|
||||||
*/
|
*/
|
||||||
unregister(unregisterToken: WeakKey): void;
|
unregister(unregisterToken: WeakKey): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface FinalizationRegistryConstructor {
|
interface FinalizationRegistryConstructor {
|
||||||
|
|
|
||||||
2
node_modules/typescript/lib/lib.es2022.regexp.d.ts
generated
vendored
2
node_modules/typescript/lib/lib.es2022.regexp.d.ts
generated
vendored
|
|
@ -32,7 +32,7 @@ interface RegExpIndicesArray extends Array<[number, number]> {
|
||||||
|
|
||||||
interface RegExp {
|
interface RegExp {
|
||||||
/**
|
/**
|
||||||
* Returns a Boolean value indicating the state of the hasIndices flag (d) used with with a regular expression.
|
* Returns a Boolean value indicating the state of the hasIndices flag (d) used with a regular expression.
|
||||||
* Default is false. Read-only.
|
* Default is false. Read-only.
|
||||||
*/
|
*/
|
||||||
readonly hasIndices: boolean;
|
readonly hasIndices: boolean;
|
||||||
|
|
|
||||||
1
node_modules/typescript/lib/lib.es2023.d.ts
generated
vendored
1
node_modules/typescript/lib/lib.es2023.d.ts
generated
vendored
|
|
@ -19,3 +19,4 @@ and limitations under the License.
|
||||||
/// <reference lib="es2022" />
|
/// <reference lib="es2022" />
|
||||||
/// <reference lib="es2023.array" />
|
/// <reference lib="es2023.array" />
|
||||||
/// <reference lib="es2023.collection" />
|
/// <reference lib="es2023.collection" />
|
||||||
|
/// <reference lib="es2023.intl" />
|
||||||
|
|
|
||||||
56
node_modules/typescript/lib/lib.es2023.intl.d.ts
generated
vendored
Normal file
56
node_modules/typescript/lib/lib.es2023.intl.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,56 @@
|
||||||
|
/*! *****************************************************************************
|
||||||
|
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"/>
|
||||||
|
|
||||||
|
declare namespace Intl {
|
||||||
|
interface NumberFormatOptionsUseGroupingRegistry {
|
||||||
|
min2: never;
|
||||||
|
auto: never;
|
||||||
|
always: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumberFormatOptionsSignDisplayRegistry {
|
||||||
|
negative: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumberFormatOptions {
|
||||||
|
roundingPriority?: "auto" | "morePrecision" | "lessPrecision" | undefined;
|
||||||
|
roundingIncrement?: 1 | 2 | 5 | 10 | 20 | 25 | 50 | 100 | 200 | 250 | 500 | 1000 | 2000 | 2500 | 5000 | undefined;
|
||||||
|
roundingMode?: "ceil" | "floor" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
||||||
|
trailingZeroDisplay?: "auto" | "stripIfInteger" | undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ResolvedNumberFormatOptions {
|
||||||
|
roundingPriority: "auto" | "morePrecision" | "lessPrecision";
|
||||||
|
roundingMode: "ceil" | "floor" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven";
|
||||||
|
roundingIncrement: 1 | 2 | 5 | 10 | 20 | 25 | 50 | 100 | 200 | 250 | 500 | 1000 | 2000 | 2500 | 5000;
|
||||||
|
trailingZeroDisplay: "auto" | "stripIfInteger";
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumberRangeFormatPart extends NumberFormatPart {
|
||||||
|
source: "startRange" | "endRange" | "shared";
|
||||||
|
}
|
||||||
|
|
||||||
|
type StringNumericLiteral = `${number}` | "Infinity" | "-Infinity" | "+Infinity";
|
||||||
|
|
||||||
|
interface NumberFormat {
|
||||||
|
format(value: number | bigint | StringNumericLiteral): string;
|
||||||
|
formatToParts(value: number | bigint | StringNumericLiteral): NumberFormatPart[];
|
||||||
|
formatRange(start: number | bigint | StringNumericLiteral, end: number | bigint | StringNumericLiteral): string;
|
||||||
|
formatRangeToParts(start: number | bigint | StringNumericLiteral, end: number | bigint | StringNumericLiteral): NumberRangeFormatPart[];
|
||||||
|
}
|
||||||
|
}
|
||||||
40
node_modules/typescript/lib/lib.es5.d.ts
generated
vendored
40
node_modules/typescript/lib/lib.es5.d.ts
generated
vendored
|
|
@ -818,7 +818,7 @@ interface Date {
|
||||||
getMilliseconds(): number;
|
getMilliseconds(): number;
|
||||||
/** Gets the milliseconds of a Date object using Universal Coordinated Time (UTC). */
|
/** Gets the milliseconds of a Date object using Universal Coordinated Time (UTC). */
|
||||||
getUTCMilliseconds(): number;
|
getUTCMilliseconds(): number;
|
||||||
/** Gets the difference in minutes between the time on the local computer and Universal Coordinated Time (UTC). */
|
/** Gets the difference in minutes between Universal Coordinated Time (UTC) and the time on the local computer. */
|
||||||
getTimezoneOffset(): number;
|
getTimezoneOffset(): number;
|
||||||
/**
|
/**
|
||||||
* Sets the date and time value in the Date object.
|
* Sets the date and time value in the Date object.
|
||||||
|
|
@ -4433,12 +4433,33 @@ declare namespace Intl {
|
||||||
|
|
||||||
var Collator: CollatorConstructor;
|
var Collator: CollatorConstructor;
|
||||||
|
|
||||||
|
interface NumberFormatOptionsStyleRegistry {
|
||||||
|
decimal: never;
|
||||||
|
percent: never;
|
||||||
|
currency: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
type NumberFormatOptionsStyle = keyof NumberFormatOptionsStyleRegistry;
|
||||||
|
|
||||||
|
interface NumberFormatOptionsCurrencyDisplayRegistry {
|
||||||
|
code: never;
|
||||||
|
symbol: never;
|
||||||
|
name: never;
|
||||||
|
}
|
||||||
|
|
||||||
|
type NumberFormatOptionsCurrencyDisplay = keyof NumberFormatOptionsCurrencyDisplayRegistry;
|
||||||
|
|
||||||
|
interface NumberFormatOptionsUseGroupingRegistry {}
|
||||||
|
|
||||||
|
type NumberFormatOptionsUseGrouping = {} extends NumberFormatOptionsUseGroupingRegistry ? boolean : keyof NumberFormatOptionsUseGroupingRegistry | "true" | "false" | boolean;
|
||||||
|
type ResolvedNumberFormatOptionsUseGrouping = {} extends NumberFormatOptionsUseGroupingRegistry ? boolean : keyof NumberFormatOptionsUseGroupingRegistry | false;
|
||||||
|
|
||||||
interface NumberFormatOptions {
|
interface NumberFormatOptions {
|
||||||
localeMatcher?: string | undefined;
|
localeMatcher?: "lookup" | "best fit" | undefined;
|
||||||
style?: string | undefined;
|
style?: NumberFormatOptionsStyle | undefined;
|
||||||
currency?: string | undefined;
|
currency?: string | undefined;
|
||||||
currencySign?: string | undefined;
|
currencyDisplay?: NumberFormatOptionsCurrencyDisplay | undefined;
|
||||||
useGrouping?: boolean | undefined;
|
useGrouping?: NumberFormatOptionsUseGrouping | undefined;
|
||||||
minimumIntegerDigits?: number | undefined;
|
minimumIntegerDigits?: number | undefined;
|
||||||
minimumFractionDigits?: number | undefined;
|
minimumFractionDigits?: number | undefined;
|
||||||
maximumFractionDigits?: number | undefined;
|
maximumFractionDigits?: number | undefined;
|
||||||
|
|
@ -4449,14 +4470,15 @@ declare namespace Intl {
|
||||||
interface ResolvedNumberFormatOptions {
|
interface ResolvedNumberFormatOptions {
|
||||||
locale: string;
|
locale: string;
|
||||||
numberingSystem: string;
|
numberingSystem: string;
|
||||||
style: string;
|
style: NumberFormatOptionsStyle;
|
||||||
currency?: string;
|
currency?: string;
|
||||||
|
currencyDisplay?: NumberFormatOptionsCurrencyDisplay;
|
||||||
minimumIntegerDigits: number;
|
minimumIntegerDigits: number;
|
||||||
minimumFractionDigits: number;
|
minimumFractionDigits?: number;
|
||||||
maximumFractionDigits: number;
|
maximumFractionDigits?: number;
|
||||||
minimumSignificantDigits?: number;
|
minimumSignificantDigits?: number;
|
||||||
maximumSignificantDigits?: number;
|
maximumSignificantDigits?: number;
|
||||||
useGrouping: boolean;
|
useGrouping: ResolvedNumberFormatOptionsUseGrouping;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface NumberFormat {
|
interface NumberFormat {
|
||||||
|
|
|
||||||
35
node_modules/typescript/lib/lib.esnext.array.d.ts
generated
vendored
Normal file
35
node_modules/typescript/lib/lib.esnext.array.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 ArrayConstructor {
|
||||||
|
/**
|
||||||
|
* Creates an array from an async iterator or iterable object.
|
||||||
|
* @param iterableOrArrayLike An async iterator or array-like object to convert to an array.
|
||||||
|
*/
|
||||||
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an array from an async iterator or iterable object.
|
||||||
|
*
|
||||||
|
* @param iterableOrArrayLike An async iterator or array-like object to convert to an array.
|
||||||
|
* @param mapfn A mapping function to call on every element of itarableOrArrayLike.
|
||||||
|
* Each return value is awaited before being added to result array.
|
||||||
|
* @param thisArg Value of 'this' used when executing mapfn.
|
||||||
|
*/
|
||||||
|
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
||||||
|
}
|
||||||
77
node_modules/typescript/lib/lib.esnext.collection.d.ts
generated
vendored
77
node_modules/typescript/lib/lib.esnext.collection.d.ts
generated
vendored
|
|
@ -27,3 +27,80 @@ interface MapConstructor {
|
||||||
keySelector: (item: T, index: number) => K,
|
keySelector: (item: T, index: number) => K,
|
||||||
): Map<K, T[]>;
|
): Map<K, T[]>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ReadonlySetLike<T> {
|
||||||
|
/**
|
||||||
|
* Despite its name, returns an iterator of the values in the set-like.
|
||||||
|
*/
|
||||||
|
keys(): Iterator<T>;
|
||||||
|
/**
|
||||||
|
* @returns a boolean indicating whether an element with the specified value exists in the set-like or not.
|
||||||
|
*/
|
||||||
|
has(value: T): boolean;
|
||||||
|
/**
|
||||||
|
* @returns the number of (unique) elements in the set-like.
|
||||||
|
*/
|
||||||
|
readonly size: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Set<T> {
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements in this Set and also all the elements in the argument.
|
||||||
|
*/
|
||||||
|
union<U>(other: ReadonlySetLike<U>): Set<T | U>;
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements which are both in this Set and in the argument.
|
||||||
|
*/
|
||||||
|
intersection<U>(other: ReadonlySetLike<U>): Set<T & U>;
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements in this Set which are not also in the argument.
|
||||||
|
*/
|
||||||
|
difference<U>(other: ReadonlySetLike<U>): Set<T>;
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements which are in either this Set or in the argument, but not in both.
|
||||||
|
*/
|
||||||
|
symmetricDifference<U>(other: ReadonlySetLike<U>): Set<T | U>;
|
||||||
|
/**
|
||||||
|
* @returns a boolean indicating whether all the elements in this Set are also in the argument.
|
||||||
|
*/
|
||||||
|
isSubsetOf(other: ReadonlySetLike<unknown>): boolean;
|
||||||
|
/**
|
||||||
|
* @returns a boolean indicating whether all the elements in the argument are also in this Set.
|
||||||
|
*/
|
||||||
|
isSupersetOf(other: ReadonlySetLike<unknown>): boolean;
|
||||||
|
/**
|
||||||
|
* @returns a boolean indicating whether this Set has no elements in common with the argument.
|
||||||
|
*/
|
||||||
|
isDisjointFrom(other: ReadonlySetLike<unknown>): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ReadonlySet<T> {
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements in this Set and also all the elements in the argument.
|
||||||
|
*/
|
||||||
|
union<U>(other: ReadonlySetLike<U>): Set<T | U>;
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements which are both in this Set and in the argument.
|
||||||
|
*/
|
||||||
|
intersection<U>(other: ReadonlySetLike<U>): Set<T & U>;
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements in this Set which are not also in the argument.
|
||||||
|
*/
|
||||||
|
difference<U>(other: ReadonlySetLike<U>): Set<T>;
|
||||||
|
/**
|
||||||
|
* @returns a new Set containing all the elements which are in either this Set or in the argument, but not in both.
|
||||||
|
*/
|
||||||
|
symmetricDifference<U>(other: ReadonlySetLike<U>): Set<T | U>;
|
||||||
|
/**
|
||||||
|
* @returns a boolean indicating whether all the elements in this Set are also in the argument.
|
||||||
|
*/
|
||||||
|
isSubsetOf(other: ReadonlySetLike<unknown>): boolean;
|
||||||
|
/**
|
||||||
|
* @returns a boolean indicating whether all the elements in the argument are also in this Set.
|
||||||
|
*/
|
||||||
|
isSupersetOf(other: ReadonlySetLike<unknown>): boolean;
|
||||||
|
/**
|
||||||
|
* @returns a boolean indicating whether this Set has no elements in common with the argument.
|
||||||
|
*/
|
||||||
|
isDisjointFrom(other: ReadonlySetLike<unknown>): boolean;
|
||||||
|
}
|
||||||
|
|
|
||||||
3
node_modules/typescript/lib/lib.esnext.d.ts
generated
vendored
3
node_modules/typescript/lib/lib.esnext.d.ts
generated
vendored
|
|
@ -23,3 +23,6 @@ and limitations under the License.
|
||||||
/// <reference lib="esnext.promise" />
|
/// <reference lib="esnext.promise" />
|
||||||
/// <reference lib="esnext.object" />
|
/// <reference lib="esnext.object" />
|
||||||
/// <reference lib="esnext.collection" />
|
/// <reference lib="esnext.collection" />
|
||||||
|
/// <reference lib="esnext.array" />
|
||||||
|
/// <reference lib="esnext.regexp" />
|
||||||
|
/// <reference lib="esnext.string" />
|
||||||
|
|
|
||||||
9
node_modules/typescript/lib/lib.esnext.intl.d.ts
generated
vendored
9
node_modules/typescript/lib/lib.esnext.intl.d.ts
generated
vendored
|
|
@ -17,12 +17,5 @@ and limitations under the License.
|
||||||
/// <reference no-default-lib="true"/>
|
/// <reference no-default-lib="true"/>
|
||||||
|
|
||||||
declare namespace Intl {
|
declare namespace Intl {
|
||||||
interface NumberRangeFormatPart extends NumberFormatPart {
|
// Empty
|
||||||
source: "startRange" | "endRange" | "shared";
|
|
||||||
}
|
|
||||||
|
|
||||||
interface NumberFormat {
|
|
||||||
formatRange(start: number | bigint, end: number | bigint): string;
|
|
||||||
formatRangeToParts(start: number | bigint, end: number | bigint): NumberRangeFormatPart[];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
25
node_modules/typescript/lib/lib.esnext.regexp.d.ts
generated
vendored
Normal file
25
node_modules/typescript/lib/lib.esnext.regexp.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
/*! *****************************************************************************
|
||||||
|
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 RegExp {
|
||||||
|
/**
|
||||||
|
* Returns a Boolean value indicating the state of the unicodeSets flag (v) used with a regular expression.
|
||||||
|
* Default is false. Read-only.
|
||||||
|
*/
|
||||||
|
readonly unicodeSets: boolean;
|
||||||
|
}
|
||||||
29
node_modules/typescript/lib/lib.esnext.string.d.ts
generated
vendored
Normal file
29
node_modules/typescript/lib/lib.esnext.string.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
/*! *****************************************************************************
|
||||||
|
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 {
|
||||||
|
/**
|
||||||
|
* Returns true if all leading surrogates and trailing surrogates appear paired and in order.
|
||||||
|
*/
|
||||||
|
isWellFormed(): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a string where all lone or out-of-order surrogates have been replaced by the Unicode replacement character (U+FFFD).
|
||||||
|
*/
|
||||||
|
toWellFormed(): string;
|
||||||
|
}
|
||||||
5
node_modules/typescript/lib/lib.webworker.asynciterable.d.ts
generated
vendored
5
node_modules/typescript/lib/lib.webworker.asynciterable.d.ts
generated
vendored
|
|
@ -26,3 +26,8 @@ interface FileSystemDirectoryHandle {
|
||||||
keys(): AsyncIterableIterator<string>;
|
keys(): AsyncIterableIterator<string>;
|
||||||
values(): AsyncIterableIterator<FileSystemHandle>;
|
values(): AsyncIterableIterator<FileSystemHandle>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ReadableStream<R = any> {
|
||||||
|
[Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
|
||||||
|
values(options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
|
||||||
|
}
|
||||||
|
|
|
||||||
26
node_modules/typescript/lib/lib.webworker.d.ts
generated
vendored
26
node_modules/typescript/lib/lib.webworker.d.ts
generated
vendored
|
|
@ -550,6 +550,17 @@ interface ReadableStreamGetReaderOptions {
|
||||||
mode?: ReadableStreamReaderMode;
|
mode?: ReadableStreamReaderMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ReadableStreamIteratorOptions {
|
||||||
|
/**
|
||||||
|
* Asynchronously iterates over the chunks in the stream's internal queue.
|
||||||
|
*
|
||||||
|
* Asynchronously iterating over the stream will lock it, preventing any other consumer from acquiring a reader. The lock will be released if the async iterator's return() method is called, e.g. by breaking out of the loop.
|
||||||
|
*
|
||||||
|
* By default, calling the async iterator's return() method will also cancel the stream. To prevent this, use the stream's values() method, passing true for the preventCancel option.
|
||||||
|
*/
|
||||||
|
preventCancel?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
interface ReadableStreamReadDoneResult<T> {
|
interface ReadableStreamReadDoneResult<T> {
|
||||||
done: true;
|
done: true;
|
||||||
value?: T;
|
value?: T;
|
||||||
|
|
@ -647,16 +658,16 @@ interface RsaPssParams extends Algorithm {
|
||||||
interface SecurityPolicyViolationEventInit extends EventInit {
|
interface SecurityPolicyViolationEventInit extends EventInit {
|
||||||
blockedURI?: string;
|
blockedURI?: string;
|
||||||
columnNumber?: number;
|
columnNumber?: number;
|
||||||
disposition: SecurityPolicyViolationEventDisposition;
|
disposition?: SecurityPolicyViolationEventDisposition;
|
||||||
documentURI: string;
|
documentURI?: string;
|
||||||
effectiveDirective: string;
|
effectiveDirective?: string;
|
||||||
lineNumber?: number;
|
lineNumber?: number;
|
||||||
originalPolicy: string;
|
originalPolicy?: string;
|
||||||
referrer?: string;
|
referrer?: string;
|
||||||
sample?: string;
|
sample?: string;
|
||||||
sourceFile?: string;
|
sourceFile?: string;
|
||||||
statusCode: number;
|
statusCode?: number;
|
||||||
violatedDirective: string;
|
violatedDirective?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface StorageEstimate {
|
interface StorageEstimate {
|
||||||
|
|
@ -971,6 +982,8 @@ declare var AbortSignal: {
|
||||||
new(): AbortSignal;
|
new(): AbortSignal;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
|
||||||
abort(reason?: any): AbortSignal;
|
abort(reason?: any): AbortSignal;
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
|
||||||
|
any(signals: AbortSignal[]): AbortSignal;
|
||||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
|
||||||
timeout(milliseconds: number): AbortSignal;
|
timeout(milliseconds: number): AbortSignal;
|
||||||
};
|
};
|
||||||
|
|
@ -5221,6 +5234,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This ServiceWorker API interface represents the global execution context of a service worker.
|
* This ServiceWorker API interface represents the global execution context of a service worker.
|
||||||
|
* Available only in secure contexts.
|
||||||
*
|
*
|
||||||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope)
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope)
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
5
node_modules/typescript/lib/lib.webworker.iterable.d.ts
generated
vendored
5
node_modules/typescript/lib/lib.webworker.iterable.d.ts
generated
vendored
|
|
@ -20,6 +20,11 @@ and limitations under the License.
|
||||||
/// Worker Iterable APIs
|
/// Worker Iterable APIs
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
|
|
||||||
|
interface AbortSignal {
|
||||||
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
|
||||||
|
any(signals: Iterable<AbortSignal>): AbortSignal;
|
||||||
|
}
|
||||||
|
|
||||||
interface CSSNumericArray {
|
interface CSSNumericArray {
|
||||||
[Symbol.iterator](): IterableIterator<CSSNumericValue>;
|
[Symbol.iterator](): IterableIterator<CSSNumericValue>;
|
||||||
entries(): IterableIterator<[number, CSSNumericValue]>;
|
entries(): IterableIterator<[number, CSSNumericValue]>;
|
||||||
|
|
|
||||||
16607
node_modules/typescript/lib/tsc.js
generated
vendored
16607
node_modules/typescript/lib/tsc.js
generated
vendored
File diff suppressed because one or more lines are too long
191286
node_modules/typescript/lib/tsserver.js
generated
vendored
191286
node_modules/typescript/lib/tsserver.js
generated
vendored
File diff suppressed because one or more lines are too long
6156
node_modules/typescript/lib/typescript.d.ts
generated
vendored
6156
node_modules/typescript/lib/typescript.d.ts
generated
vendored
File diff suppressed because it is too large
Load diff
370937
node_modules/typescript/lib/typescript.js
generated
vendored
370937
node_modules/typescript/lib/typescript.js
generated
vendored
File diff suppressed because one or more lines are too long
32468
node_modules/typescript/lib/typingsInstaller.js
generated
vendored
32468
node_modules/typescript/lib/typingsInstaller.js
generated
vendored
File diff suppressed because one or more lines are too long
46
node_modules/typescript/package.json
generated
vendored
46
node_modules/typescript/package.json
generated
vendored
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "typescript",
|
"name": "typescript",
|
||||||
"author": "Microsoft Corp.",
|
"author": "Microsoft Corp.",
|
||||||
"homepage": "https://www.typescriptlang.org/",
|
"homepage": "https://www.typescriptlang.org/",
|
||||||
"version": "5.4.5",
|
"version": "5.5.2",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "TypeScript is a language for application scale JavaScript development",
|
"description": "TypeScript is a language for application scale JavaScript development",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
@ -39,10 +39,11 @@
|
||||||
"!**/.gitattributes"
|
"!**/.gitattributes"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@dprint/formatter": "^0.3.0",
|
||||||
|
"@dprint/typescript": "0.91.0",
|
||||||
"@esfx/canceltoken": "^1.0.0",
|
"@esfx/canceltoken": "^1.0.0",
|
||||||
"@octokit/rest": "^20.0.2",
|
"@octokit/rest": "^20.1.1",
|
||||||
"@types/chai": "^4.3.11",
|
"@types/chai": "^4.3.16",
|
||||||
"@types/glob": "^8.1.0",
|
|
||||||
"@types/microsoft__typescript-etw": "^0.1.3",
|
"@types/microsoft__typescript-etw": "^0.1.3",
|
||||||
"@types/minimist": "^1.2.5",
|
"@types/minimist": "^1.2.5",
|
||||||
"@types/mocha": "^10.0.6",
|
"@types/mocha": "^10.0.6",
|
||||||
|
|
@ -50,35 +51,33 @@
|
||||||
"@types/node": "latest",
|
"@types/node": "latest",
|
||||||
"@types/source-map-support": "^0.5.10",
|
"@types/source-map-support": "^0.5.10",
|
||||||
"@types/which": "^3.0.3",
|
"@types/which": "^3.0.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
"@typescript-eslint/eslint-plugin": "^7.11.0",
|
||||||
"@typescript-eslint/parser": "^6.19.0",
|
"@typescript-eslint/parser": "^7.11.0",
|
||||||
"@typescript-eslint/utils": "^6.19.0",
|
"@typescript-eslint/utils": "^7.11.0",
|
||||||
"azure-devops-node-api": "^12.3.0",
|
"azure-devops-node-api": "^13.0.0",
|
||||||
"c8": "^9.1.0",
|
"c8": "^9.1.0",
|
||||||
"chai": "^4.4.1",
|
"chai": "^4.4.1",
|
||||||
"chalk": "^4.1.2",
|
"chalk": "^4.1.2",
|
||||||
"chokidar": "^3.5.3",
|
"chokidar": "^3.6.0",
|
||||||
"diff": "^5.1.0",
|
"diff": "^5.2.0",
|
||||||
"dprint": "^0.45.0",
|
"dprint": "^0.46.1",
|
||||||
"esbuild": "^0.20.0",
|
"esbuild": "^0.21.4",
|
||||||
"eslint": "^8.56.0",
|
"eslint": "^8.57.0",
|
||||||
"eslint-formatter-autolinkable-stylish": "^1.3.0",
|
"eslint-formatter-autolinkable-stylish": "^1.3.0",
|
||||||
"eslint-plugin-local": "^3.1.0",
|
"eslint-plugin-local": "^4.2.2",
|
||||||
"eslint-plugin-no-null": "^1.0.2",
|
"fast-xml-parser": "^4.4.0",
|
||||||
"eslint-plugin-simple-import-sort": "^10.0.0",
|
"glob": "^10.4.1",
|
||||||
"fast-xml-parser": "^4.3.3",
|
|
||||||
"glob": "^10.3.10",
|
|
||||||
"hereby": "^1.8.9",
|
"hereby": "^1.8.9",
|
||||||
"jsonc-parser": "^3.2.0",
|
"jsonc-parser": "^3.2.1",
|
||||||
"minimist": "^1.2.8",
|
"minimist": "^1.2.8",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.4.0",
|
||||||
"mocha-fivemat-progress-reporter": "^0.1.0",
|
"mocha-fivemat-progress-reporter": "^0.1.0",
|
||||||
"ms": "^2.1.3",
|
"ms": "^2.1.3",
|
||||||
"node-fetch": "^3.3.2",
|
"node-fetch": "^3.3.2",
|
||||||
"playwright": "^1.41.0",
|
"playwright": "^1.44.1",
|
||||||
"source-map-support": "^0.5.21",
|
"source-map-support": "^0.5.21",
|
||||||
"tslib": "^2.6.2",
|
"tslib": "^2.6.2",
|
||||||
"typescript": "5.4.0-dev.20240119",
|
"typescript": "^5.4.5",
|
||||||
"which": "^3.0.1"
|
"which": "^3.0.1"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
|
|
@ -112,5 +111,6 @@
|
||||||
"volta": {
|
"volta": {
|
||||||
"node": "20.1.0",
|
"node": "20.1.0",
|
||||||
"npm": "8.19.4"
|
"npm": "8.19.4"
|
||||||
}
|
},
|
||||||
|
"gitHead": "ce2e60e4ea15a65992e54a9e8877d16be9d42abb"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue