diff --git a/baselines/audioworklet.generated.d.ts b/baselines/audioworklet.generated.d.ts index 991a2dd7a..97377d064 100644 --- a/baselines/audioworklet.generated.d.ts +++ b/baselines/audioworklet.generated.d.ts @@ -193,10 +193,11 @@ interface AbortController { abort(reason?: any): void; } -declare var AbortController: { +declare interface AbortControllerConstructor { prototype: AbortController; new(): AbortController; -}; +} +declare var AbortController: AbortControllerConstructor interface AbortSignalEventMap { "abort": Event; @@ -215,11 +216,12 @@ interface AbortSignal extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var AbortSignal: { +declare interface AbortSignalConstructor { prototype: AbortSignal; new(): AbortSignal; abort(reason?: any): AbortSignal; -}; +} +declare var AbortSignal: AbortSignalConstructor interface AudioWorkletGlobalScope extends WorkletGlobalScope { readonly currentFrame: number; @@ -228,19 +230,21 @@ interface AudioWorkletGlobalScope extends WorkletGlobalScope { registerProcessor(name: string, processorCtor: AudioWorkletProcessorConstructor): void; } -declare var AudioWorkletGlobalScope: { +declare interface AudioWorkletGlobalScopeConstructor { prototype: AudioWorkletGlobalScope; new(): AudioWorkletGlobalScope; -}; +} +declare var AudioWorkletGlobalScope: AudioWorkletGlobalScopeConstructor interface AudioWorkletProcessor { readonly port: MessagePort; } -declare var AudioWorkletProcessor: { +declare interface AudioWorkletProcessorConstructor { prototype: AudioWorkletProcessor; new(): AudioWorkletProcessor; -}; +} +declare var AudioWorkletProcessor: AudioWorkletProcessorConstructor interface AudioWorkletProcessorImpl extends AudioWorkletProcessor { process(inputs: Float32Array[][], outputs: Float32Array[][], parameters: Record): boolean; @@ -252,10 +256,11 @@ interface ByteLengthQueuingStrategy extends QueuingStrategy { readonly size: QueuingStrategySize; } -declare var ByteLengthQueuingStrategy: { +declare interface ByteLengthQueuingStrategyConstructor { prototype: ByteLengthQueuingStrategy; new(init: QueuingStrategyInit): ByteLengthQueuingStrategy; -}; +} +declare var ByteLengthQueuingStrategy: ByteLengthQueuingStrategyConstructor /** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */ interface CountQueuingStrategy extends QueuingStrategy { @@ -263,10 +268,11 @@ interface CountQueuingStrategy extends QueuingStrategy { readonly size: QueuingStrategySize; } -declare var CountQueuingStrategy: { +declare interface CountQueuingStrategyConstructor { prototype: CountQueuingStrategy; new(init: QueuingStrategyInit): CountQueuingStrategy; -}; +} +declare var CountQueuingStrategy: CountQueuingStrategyConstructor interface CustomEvent extends Event { /** Returns any custom data event was created with. Typically used for synthetic events. */ @@ -275,10 +281,11 @@ interface CustomEvent extends Event { initCustomEvent(type: string, bubbles?: boolean, cancelable?: boolean, detail?: T): void; } -declare var CustomEvent: { +declare interface CustomEventConstructor { prototype: CustomEvent; new(type: string, eventInitDict?: CustomEventInit): CustomEvent; -}; +} +declare var CustomEvent: CustomEventConstructor /** Events providing information related to errors in scripts or in files. */ interface ErrorEvent extends Event { @@ -289,10 +296,11 @@ interface ErrorEvent extends Event { readonly message: string; } -declare var ErrorEvent: { +declare interface ErrorEventConstructor { prototype: ErrorEvent; new(type: string, eventInitDict?: ErrorEventInit): ErrorEvent; -}; +} +declare var ErrorEvent: ErrorEventConstructor /** An event which takes place in the DOM. */ interface Event { @@ -337,14 +345,15 @@ interface Event { readonly NONE: number; } -declare var Event: { +declare interface EventConstructor { prototype: Event; new(type: string, eventInitDict?: EventInit): Event; readonly AT_TARGET: number; readonly BUBBLING_PHASE: number; readonly CAPTURING_PHASE: number; readonly NONE: number; -}; +} +declare var Event: EventConstructor interface EventListener { (evt: Event): void; @@ -378,10 +387,11 @@ interface EventTarget { removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void; } -declare var EventTarget: { +declare interface EventTargetConstructor { prototype: EventTarget; new(): EventTarget; -}; +} +declare var EventTarget: EventTargetConstructor interface GenericTransformStream { readonly readable: ReadableStream; @@ -404,10 +414,11 @@ interface MessageEvent extends Event { initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void; } -declare var MessageEvent: { +declare interface MessageEventConstructor { prototype: MessageEvent; new(type: string, eventInitDict?: MessageEventInit): MessageEvent; -}; +} +declare var MessageEvent: MessageEventConstructor interface MessagePortEventMap { "message": MessageEvent; @@ -435,10 +446,11 @@ interface MessagePort extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var MessagePort: { +declare interface MessagePortConstructor { prototype: MessagePort; new(): MessagePort; -}; +} +declare var MessagePort: MessagePortConstructor interface PerformanceEventMap { "resourcetimingbufferfull": Event; @@ -465,10 +477,11 @@ interface Performance extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var Performance: { +declare interface PerformanceConstructor { prototype: Performance; new(): Performance; -}; +} +declare var Performance: PerformanceConstructor /** Encapsulates a single performance metric that is part of the performance timeline. A performance entry can be directly created by making a performance mark or measure (for example by calling the mark() method) at an explicit point in an application. Performance entries are also created in indirect ways such as loading a resource (such as an image). */ interface PerformanceEntry { @@ -479,30 +492,33 @@ interface PerformanceEntry { toJSON(): any; } -declare var PerformanceEntry: { +declare interface PerformanceEntryConstructor { prototype: PerformanceEntry; new(): PerformanceEntry; -}; +} +declare var PerformanceEntry: PerformanceEntryConstructor /** PerformanceMark is an abstract interface for PerformanceEntry objects with an entryType of "mark". Entries of this type are created by calling performance.mark() to add a named DOMHighResTimeStamp (the mark) to the browser's performance timeline. */ interface PerformanceMark extends PerformanceEntry { readonly detail: any; } -declare var PerformanceMark: { +declare interface PerformanceMarkConstructor { prototype: PerformanceMark; new(markName: string, markOptions?: PerformanceMarkOptions): PerformanceMark; -}; +} +declare var PerformanceMark: PerformanceMarkConstructor /** PerformanceMeasure is an abstract interface for PerformanceEntry objects with an entryType of "measure". Entries of this type are created by calling performance.measure() to add a named DOMHighResTimeStamp (the measure) between two marks to the browser's performance timeline. */ interface PerformanceMeasure extends PerformanceEntry { readonly detail: any; } -declare var PerformanceMeasure: { +declare interface PerformanceMeasureConstructor { prototype: PerformanceMeasure; new(): PerformanceMeasure; -}; +} +declare var PerformanceMeasure: PerformanceMeasureConstructor interface PerformanceObserver { disconnect(): void; @@ -510,11 +526,12 @@ interface PerformanceObserver { takeRecords(): PerformanceEntryList; } -declare var PerformanceObserver: { +declare interface PerformanceObserverConstructor { prototype: PerformanceObserver; new(callback: PerformanceObserverCallback): PerformanceObserver; readonly supportedEntryTypes: ReadonlyArray; -}; +} +declare var PerformanceObserver: PerformanceObserverConstructor interface PerformanceObserverEntryList { getEntries(): PerformanceEntryList; @@ -522,20 +539,22 @@ interface PerformanceObserverEntryList { getEntriesByType(type: string): PerformanceEntryList; } -declare var PerformanceObserverEntryList: { +declare interface PerformanceObserverEntryListConstructor { prototype: PerformanceObserverEntryList; new(): PerformanceObserverEntryList; -}; +} +declare var PerformanceObserverEntryList: PerformanceObserverEntryListConstructor interface PromiseRejectionEvent extends Event { readonly promise: Promise; readonly reason: any; } -declare var PromiseRejectionEvent: { +declare interface PromiseRejectionEventConstructor { prototype: PromiseRejectionEvent; new(type: string, eventInitDict: PromiseRejectionEventInit): PromiseRejectionEvent; -}; +} +declare var PromiseRejectionEvent: PromiseRejectionEventConstructor interface ReadableByteStreamController { readonly byobRequest: ReadableStreamBYOBRequest | null; @@ -545,10 +564,11 @@ interface ReadableByteStreamController { error(e?: any): void; } -declare var ReadableByteStreamController: { +declare interface ReadableByteStreamControllerConstructor { prototype: ReadableByteStreamController; new(): ReadableByteStreamController; -}; +} +declare var ReadableByteStreamController: ReadableByteStreamControllerConstructor /** This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a ReadableStream through the body property of a Response object. */ interface ReadableStream { @@ -562,22 +582,24 @@ interface ReadableStream { tee(): [ReadableStream, ReadableStream]; } -declare var ReadableStream: { +declare interface ReadableStreamConstructor { prototype: ReadableStream; new(underlyingSource: UnderlyingByteSource, strategy?: { highWaterMark?: number }): ReadableStream; new(underlyingSource: UnderlyingDefaultSource, strategy?: QueuingStrategy): ReadableStream; new(underlyingSource?: UnderlyingSource, strategy?: QueuingStrategy): ReadableStream; -}; +} +declare var ReadableStream: ReadableStreamConstructor interface ReadableStreamBYOBReader extends ReadableStreamGenericReader { read(view: T): Promise>; releaseLock(): void; } -declare var ReadableStreamBYOBReader: { +declare interface ReadableStreamBYOBReaderConstructor { prototype: ReadableStreamBYOBReader; new(stream: ReadableStream): ReadableStreamBYOBReader; -}; +} +declare var ReadableStreamBYOBReader: ReadableStreamBYOBReaderConstructor interface ReadableStreamBYOBRequest { readonly view: ArrayBufferView | null; @@ -585,10 +607,11 @@ interface ReadableStreamBYOBRequest { respondWithNewView(view: ArrayBufferView): void; } -declare var ReadableStreamBYOBRequest: { +declare interface ReadableStreamBYOBRequestConstructor { prototype: ReadableStreamBYOBRequest; new(): ReadableStreamBYOBRequest; -}; +} +declare var ReadableStreamBYOBRequest: ReadableStreamBYOBRequestConstructor interface ReadableStreamDefaultController { readonly desiredSize: number | null; @@ -597,20 +620,22 @@ interface ReadableStreamDefaultController { error(e?: any): void; } -declare var ReadableStreamDefaultController: { +declare interface ReadableStreamDefaultControllerConstructor { prototype: ReadableStreamDefaultController; new(): ReadableStreamDefaultController; -}; +} +declare var ReadableStreamDefaultController: ReadableStreamDefaultControllerConstructor interface ReadableStreamDefaultReader extends ReadableStreamGenericReader { read(): Promise>; releaseLock(): void; } -declare var ReadableStreamDefaultReader: { +declare interface ReadableStreamDefaultReaderConstructor { prototype: ReadableStreamDefaultReader; new(stream: ReadableStream): ReadableStreamDefaultReader; -}; +} +declare var ReadableStreamDefaultReader: ReadableStreamDefaultReaderConstructor interface ReadableStreamGenericReader { readonly closed: Promise; @@ -635,10 +660,11 @@ interface TextDecoder extends TextDecoderCommon { decode(input?: BufferSource, options?: TextDecodeOptions): string; } -declare var TextDecoder: { +declare interface TextDecoderConstructor { prototype: TextDecoder; new(label?: string, options?: TextDecoderOptions): TextDecoder; -}; +} +declare var TextDecoder: TextDecoderConstructor interface TextDecoderCommon { /** Returns encoding's name, lowercased. */ @@ -654,10 +680,11 @@ interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon { readonly writable: WritableStream; } -declare var TextDecoderStream: { +declare interface TextDecoderStreamConstructor { prototype: TextDecoderStream; new(label?: string, options?: TextDecoderOptions): TextDecoderStream; -}; +} +declare var TextDecoderStream: TextDecoderStreamConstructor /** TextEncoder takes a stream of code points as input and emits a stream of bytes. For a more scalable, non-native library, see StringView – a C-like representation of strings based on typed arrays. */ interface TextEncoder extends TextEncoderCommon { @@ -667,10 +694,11 @@ interface TextEncoder extends TextEncoderCommon { encodeInto(source: string, destination: Uint8Array): TextEncoderEncodeIntoResult; } -declare var TextEncoder: { +declare interface TextEncoderConstructor { prototype: TextEncoder; new(): TextEncoder; -}; +} +declare var TextEncoder: TextEncoderConstructor interface TextEncoderCommon { /** Returns "utf-8". */ @@ -682,20 +710,22 @@ interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon { readonly writable: WritableStream; } -declare var TextEncoderStream: { +declare interface TextEncoderStreamConstructor { prototype: TextEncoderStream; new(): TextEncoderStream; -}; +} +declare var TextEncoderStream: TextEncoderStreamConstructor interface TransformStream { readonly readable: ReadableStream; readonly writable: WritableStream; } -declare var TransformStream: { +declare interface TransformStreamConstructor { prototype: TransformStream; new(transformer?: Transformer, writableStrategy?: QueuingStrategy, readableStrategy?: QueuingStrategy): TransformStream; -}; +} +declare var TransformStream: TransformStreamConstructor interface TransformStreamDefaultController { readonly desiredSize: number | null; @@ -704,10 +734,11 @@ interface TransformStreamDefaultController { terminate(): void; } -declare var TransformStreamDefaultController: { +declare interface TransformStreamDefaultControllerConstructor { prototype: TransformStreamDefaultController; new(): TransformStreamDefaultController; -}; +} +declare var TransformStreamDefaultController: TransformStreamDefaultControllerConstructor /** The URL interface represents an object providing static methods used for creating object URLs. */ interface URL { @@ -727,10 +758,11 @@ interface URL { toJSON(): string; } -declare var URL: { +declare interface URLConstructor { prototype: URL; new(url: string | URL, base?: string | URL): URL; -}; +} +declare var URL: URLConstructor interface URLSearchParams { /** Appends a specified key/value pair as a new search parameter. */ @@ -751,20 +783,22 @@ interface URLSearchParams { forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void; } -declare var URLSearchParams: { +declare interface URLSearchParamsConstructor { prototype: URLSearchParams; new(init?: string[][] | Record | string | URLSearchParams): URLSearchParams; toString(): string; -}; +} +declare var URLSearchParams: URLSearchParamsConstructor /** Available only in secure contexts. */ interface WorkletGlobalScope { } -declare var WorkletGlobalScope: { +declare interface WorkletGlobalScopeConstructor { prototype: WorkletGlobalScope; new(): WorkletGlobalScope; -}; +} +declare var WorkletGlobalScope: WorkletGlobalScopeConstructor /** This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing. */ interface WritableStream { @@ -774,10 +808,11 @@ interface WritableStream { getWriter(): WritableStreamDefaultWriter; } -declare var WritableStream: { +declare interface WritableStreamConstructor { prototype: WritableStream; new(underlyingSink?: UnderlyingSink, strategy?: QueuingStrategy): WritableStream; -}; +} +declare var WritableStream: WritableStreamConstructor /** This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate. */ interface WritableStreamDefaultController { @@ -785,10 +820,11 @@ interface WritableStreamDefaultController { error(e?: any): void; } -declare var WritableStreamDefaultController: { +declare interface WritableStreamDefaultControllerConstructor { prototype: WritableStreamDefaultController; new(): WritableStreamDefaultController; -}; +} +declare var WritableStreamDefaultController: WritableStreamDefaultControllerConstructor /** This Streams API interface is the object returned by WritableStream.getWriter() and once created locks the < writer to the WritableStream ensuring that no other streams can write to the underlying sink. */ interface WritableStreamDefaultWriter { @@ -801,10 +837,11 @@ interface WritableStreamDefaultWriter { write(chunk?: W): Promise; } -declare var WritableStreamDefaultWriter: { +declare interface WritableStreamDefaultWriterConstructor { prototype: WritableStreamDefaultWriter; new(stream: WritableStream): WritableStreamDefaultWriter; -}; +} +declare var WritableStreamDefaultWriter: WritableStreamDefaultWriterConstructor interface Console { assert(condition?: boolean, ...data: any[]): void; @@ -835,69 +872,76 @@ declare namespace WebAssembly { interface CompileError extends Error { } - var CompileError: { + interface CompileErrorConstructor { prototype: CompileError; new(message?: string): CompileError; (message?: string): CompileError; - }; + } + var CompileError: CompileErrorConstructor interface Global { value: any; valueOf(): any; } - var Global: { + interface GlobalConstructor { prototype: Global; new(descriptor: GlobalDescriptor, v?: any): Global; - }; + } + var Global: GlobalConstructor interface Instance { readonly exports: Exports; } - var Instance: { + interface InstanceConstructor { prototype: Instance; new(module: Module, importObject?: Imports): Instance; - }; + } + var Instance: InstanceConstructor interface LinkError extends Error { } - var LinkError: { + interface LinkErrorConstructor { prototype: LinkError; new(message?: string): LinkError; (message?: string): LinkError; - }; + } + var LinkError: LinkErrorConstructor interface Memory { readonly buffer: ArrayBuffer; grow(delta: number): number; } - var Memory: { + interface MemoryConstructor { prototype: Memory; new(descriptor: MemoryDescriptor): Memory; - }; + } + var Memory: MemoryConstructor interface Module { } - var Module: { + interface ModuleConstructor { prototype: Module; new(bytes: BufferSource): Module; customSections(moduleObject: Module, sectionName: string): ArrayBuffer[]; exports(moduleObject: Module): ModuleExportDescriptor[]; imports(moduleObject: Module): ModuleImportDescriptor[]; - }; + } + var Module: ModuleConstructor interface RuntimeError extends Error { } - var RuntimeError: { + interface RuntimeErrorConstructor { prototype: RuntimeError; new(message?: string): RuntimeError; (message?: string): RuntimeError; - }; + } + var RuntimeError: RuntimeErrorConstructor interface Table { readonly length: number; @@ -906,10 +950,11 @@ declare namespace WebAssembly { set(index: number, value?: any): void; } - var Table: { + interface TableConstructor { prototype: Table; new(descriptor: TableDescriptor, value?: any): Table; - }; + } + var Table: TableConstructor interface GlobalDescriptor { mutable?: boolean; diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 2f49dcda9..ba4e7a907 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -1980,10 +1980,11 @@ interface AbortController { abort(reason?: any): void; } -declare var AbortController: { +declare interface AbortControllerConstructor { prototype: AbortController; new(): AbortController; -}; +} +declare var AbortController: AbortControllerConstructor interface AbortSignalEventMap { "abort": Event; @@ -2002,12 +2003,13 @@ interface AbortSignal extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var AbortSignal: { +declare interface AbortSignalConstructor { prototype: AbortSignal; new(): AbortSignal; abort(reason?: any): AbortSignal; timeout(milliseconds: number): AbortSignal; -}; +} +declare var AbortSignal: AbortSignalConstructor interface AbstractRange { /** Returns true if range is collapsed, and false otherwise. */ @@ -2022,10 +2024,11 @@ interface AbstractRange { readonly startOffset: number; } -declare var AbstractRange: { +declare interface AbstractRangeConstructor { prototype: AbstractRange; new(): AbstractRange; -}; +} +declare var AbstractRange: AbstractRangeConstructor interface AbstractWorkerEventMap { "error": ErrorEvent; @@ -2052,10 +2055,11 @@ interface AnalyserNode extends AudioNode { getFloatTimeDomainData(array: Float32Array): void; } -declare var AnalyserNode: { +declare interface AnalyserNodeConstructor { prototype: AnalyserNode; new(context: BaseAudioContext, options?: AnalyserOptions): AnalyserNode; -}; +} +declare var AnalyserNode: AnalyserNodeConstructor interface Animatable { animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation; @@ -2097,10 +2101,11 @@ interface Animation extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var Animation: { +declare interface AnimationConstructor { prototype: Animation; new(effect?: AnimationEffect | null, timeline?: AnimationTimeline | null): Animation; -}; +} +declare var Animation: AnimationConstructor interface AnimationEffect { getComputedTiming(): ComputedEffectTiming; @@ -2108,10 +2113,11 @@ interface AnimationEffect { updateTiming(timing?: OptionalEffectTiming): void; } -declare var AnimationEffect: { +declare interface AnimationEffectConstructor { prototype: AnimationEffect; new(): AnimationEffect; -}; +} +declare var AnimationEffect: AnimationEffectConstructor /** Events providing information related to animations. */ interface AnimationEvent extends Event { @@ -2120,10 +2126,11 @@ interface AnimationEvent extends Event { readonly pseudoElement: string; } -declare var AnimationEvent: { +declare interface AnimationEventConstructor { prototype: AnimationEvent; new(type: string, animationEventInitDict?: AnimationEventInit): AnimationEvent; -}; +} +declare var AnimationEvent: AnimationEventConstructor interface AnimationFrameProvider { cancelAnimationFrame(handle: number): void; @@ -2135,19 +2142,21 @@ interface AnimationPlaybackEvent extends Event { readonly timelineTime: CSSNumberish | null; } -declare var AnimationPlaybackEvent: { +declare interface AnimationPlaybackEventConstructor { prototype: AnimationPlaybackEvent; new(type: string, eventInitDict?: AnimationPlaybackEventInit): AnimationPlaybackEvent; -}; +} +declare var AnimationPlaybackEvent: AnimationPlaybackEventConstructor interface AnimationTimeline { readonly currentTime: number | null; } -declare var AnimationTimeline: { +declare interface AnimationTimelineConstructor { prototype: AnimationTimeline; new(): AnimationTimeline; -}; +} +declare var AnimationTimeline: AnimationTimelineConstructor /** A DOM element's attribute as an object. In most DOM methods, you will probably directly retrieve the attribute as a string (e.g., Element.getAttribute(), but certain functions (e.g., Element.getAttributeNode()) or means of iterating give Attr types. */ interface Attr extends Node { @@ -2161,10 +2170,11 @@ interface Attr extends Node { value: string; } -declare var Attr: { +declare interface AttrConstructor { prototype: Attr; new(): Attr; -}; +} +declare var Attr: AttrConstructor /** A short audio asset residing in memory, created from an audio file using the AudioContext.decodeAudioData() method, or from raw data using AudioContext.createBuffer(). Once put into an AudioBuffer, the audio can then be played by being passed into an AudioBufferSourceNode. */ interface AudioBuffer { @@ -2177,10 +2187,11 @@ interface AudioBuffer { getChannelData(channel: number): Float32Array; } -declare var AudioBuffer: { +declare interface AudioBufferConstructor { prototype: AudioBuffer; new(options: AudioBufferOptions): AudioBuffer; -}; +} +declare var AudioBuffer: AudioBufferConstructor /** An AudioScheduledSourceNode which represents an audio source consisting of in-memory audio data, stored in an AudioBuffer. It's especially useful for playing back audio which has particularly stringent timing accuracy requirements, such as for sounds that must match a specific rhythm and can be kept in memory rather than being played from disk or the network. */ interface AudioBufferSourceNode extends AudioScheduledSourceNode { @@ -2197,10 +2208,11 @@ interface AudioBufferSourceNode extends AudioScheduledSourceNode { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var AudioBufferSourceNode: { +declare interface AudioBufferSourceNodeConstructor { prototype: AudioBufferSourceNode; new(context: BaseAudioContext, options?: AudioBufferSourceOptions): AudioBufferSourceNode; -}; +} +declare var AudioBufferSourceNode: AudioBufferSourceNodeConstructor /** An audio-processing graph built from audio modules linked together, each represented by an AudioNode. */ interface AudioContext extends BaseAudioContext { @@ -2219,20 +2231,22 @@ interface AudioContext extends BaseAudioContext { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var AudioContext: { +declare interface AudioContextConstructor { prototype: AudioContext; new(contextOptions?: AudioContextOptions): AudioContext; -}; +} +declare var AudioContext: AudioContextConstructor /** AudioDestinationNode has no output (as it is the output, no more AudioNode can be linked after it in the audio graph) and one input. The number of channels in the input must be between 0 and the maxChannelCount value or an exception is raised. */ interface AudioDestinationNode extends AudioNode { readonly maxChannelCount: number; } -declare var AudioDestinationNode: { +declare interface AudioDestinationNodeConstructor { prototype: AudioDestinationNode; new(): AudioDestinationNode; -}; +} +declare var AudioDestinationNode: AudioDestinationNodeConstructor /** The position and orientation of the unique person listening to the audio scene, and is used in audio spatialization. All PannerNodes spatialize in relation to the AudioListener stored in the BaseAudioContext.listener attribute. */ interface AudioListener { @@ -2251,10 +2265,11 @@ interface AudioListener { setPosition(x: number, y: number, z: number): void; } -declare var AudioListener: { +declare interface AudioListenerConstructor { prototype: AudioListener; new(): AudioListener; -}; +} +declare var AudioListener: AudioListenerConstructor /** A generic interface for representing an audio processing module. Examples include: */ interface AudioNode extends EventTarget { @@ -2275,10 +2290,11 @@ interface AudioNode extends EventTarget { disconnect(destinationParam: AudioParam, output: number): void; } -declare var AudioNode: { +declare interface AudioNodeConstructor { prototype: AudioNode; new(): AudioNode; -}; +} +declare var AudioNode: AudioNodeConstructor /** The Web Audio API's AudioParam interface represents an audio-related parameter, usually a parameter of an AudioNode (such as GainNode.gain). */ interface AudioParam { @@ -2296,19 +2312,21 @@ interface AudioParam { setValueCurveAtTime(values: number[] | Float32Array, startTime: number, duration: number): AudioParam; } -declare var AudioParam: { +declare interface AudioParamConstructor { prototype: AudioParam; new(): AudioParam; -}; +} +declare var AudioParam: AudioParamConstructor interface AudioParamMap { forEach(callbackfn: (value: AudioParam, key: string, parent: AudioParamMap) => void, thisArg?: any): void; } -declare var AudioParamMap: { +declare interface AudioParamMapConstructor { prototype: AudioParamMap; new(): AudioParamMap; -}; +} +declare var AudioParamMap: AudioParamMapConstructor /** * The Web Audio API events that occur when a ScriptProcessorNode input buffer is ready to be processed. @@ -2324,10 +2342,12 @@ interface AudioProcessingEvent extends Event { } /** @deprecated */ -declare var AudioProcessingEvent: { +declare interface AudioProcessingEventConstructor { prototype: AudioProcessingEvent; new(type: string, eventInitDict: AudioProcessingEventInit): AudioProcessingEvent; -}; +} +/** @deprecated */ +declare var AudioProcessingEvent: AudioProcessingEventConstructor interface AudioScheduledSourceNodeEventMap { "ended": Event; @@ -2343,19 +2363,21 @@ interface AudioScheduledSourceNode extends AudioNode { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var AudioScheduledSourceNode: { +declare interface AudioScheduledSourceNodeConstructor { prototype: AudioScheduledSourceNode; new(): AudioScheduledSourceNode; -}; +} +declare var AudioScheduledSourceNode: AudioScheduledSourceNodeConstructor /** Available only in secure contexts. */ interface AudioWorklet extends Worklet { } -declare var AudioWorklet: { +declare interface AudioWorkletConstructor { prototype: AudioWorklet; new(): AudioWorklet; -}; +} +declare var AudioWorklet: AudioWorkletConstructor interface AudioWorkletNodeEventMap { "processorerror": Event; @@ -2372,10 +2394,11 @@ interface AudioWorkletNode extends AudioNode { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var AudioWorkletNode: { +declare interface AudioWorkletNodeConstructor { prototype: AudioWorkletNode; new(context: BaseAudioContext, name: string, options?: AudioWorkletNodeOptions): AudioWorkletNode; -}; +} +declare var AudioWorkletNode: AudioWorkletNodeConstructor /** Available only in secure contexts. */ interface AuthenticatorAssertionResponse extends AuthenticatorResponse { @@ -2384,10 +2407,11 @@ interface AuthenticatorAssertionResponse extends AuthenticatorResponse { readonly userHandle: ArrayBuffer | null; } -declare var AuthenticatorAssertionResponse: { +declare interface AuthenticatorAssertionResponseConstructor { prototype: AuthenticatorAssertionResponse; new(): AuthenticatorAssertionResponse; -}; +} +declare var AuthenticatorAssertionResponse: AuthenticatorAssertionResponseConstructor /** Available only in secure contexts. */ interface AuthenticatorAttestationResponse extends AuthenticatorResponse { @@ -2396,29 +2420,32 @@ interface AuthenticatorAttestationResponse extends AuthenticatorResponse { getTransports(): string[]; } -declare var AuthenticatorAttestationResponse: { +declare interface AuthenticatorAttestationResponseConstructor { prototype: AuthenticatorAttestationResponse; new(): AuthenticatorAttestationResponse; -}; +} +declare var AuthenticatorAttestationResponse: AuthenticatorAttestationResponseConstructor /** Available only in secure contexts. */ interface AuthenticatorResponse { readonly clientDataJSON: ArrayBuffer; } -declare var AuthenticatorResponse: { +declare interface AuthenticatorResponseConstructor { prototype: AuthenticatorResponse; new(): AuthenticatorResponse; -}; +} +declare var AuthenticatorResponse: AuthenticatorResponseConstructor interface BarProp { readonly visible: boolean; } -declare var BarProp: { +declare interface BarPropConstructor { prototype: BarProp; new(): BarProp; -}; +} +declare var BarProp: BarPropConstructor interface BaseAudioContextEventMap { "statechange": Event; @@ -2459,20 +2486,22 @@ interface BaseAudioContext extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var BaseAudioContext: { +declare interface BaseAudioContextConstructor { prototype: BaseAudioContext; new(): BaseAudioContext; -}; +} +declare var BaseAudioContext: BaseAudioContextConstructor /** The beforeunload event is fired when the window, the document and its resources are about to be unloaded. */ interface BeforeUnloadEvent extends Event { returnValue: any; } -declare var BeforeUnloadEvent: { +declare interface BeforeUnloadEventConstructor { prototype: BeforeUnloadEvent; new(): BeforeUnloadEvent; -}; +} +declare var BeforeUnloadEvent: BeforeUnloadEventConstructor /** A simple low-order filter, and is created using the AudioContext.createBiquadFilter() method. It is an AudioNode that can represent different kinds of filters, tone control devices, and graphic equalizers. */ interface BiquadFilterNode extends AudioNode { @@ -2484,10 +2513,11 @@ interface BiquadFilterNode extends AudioNode { getFrequencyResponse(frequencyHz: Float32Array, magResponse: Float32Array, phaseResponse: Float32Array): void; } -declare var BiquadFilterNode: { +declare interface BiquadFilterNodeConstructor { prototype: BiquadFilterNode; new(context: BaseAudioContext, options?: BiquadFilterOptions): BiquadFilterNode; -}; +} +declare var BiquadFilterNode: BiquadFilterNodeConstructor /** A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user's system. */ interface Blob { @@ -2499,20 +2529,22 @@ interface Blob { text(): Promise; } -declare var Blob: { +declare interface BlobConstructor { prototype: Blob; new(blobParts?: BlobPart[], options?: BlobPropertyBag): Blob; -}; +} +declare var Blob: BlobConstructor interface BlobEvent extends Event { readonly data: Blob; readonly timecode: DOMHighResTimeStamp; } -declare var BlobEvent: { +declare interface BlobEventConstructor { prototype: BlobEvent; new(type: string, eventInitDict: BlobEventInit): BlobEvent; -}; +} +declare var BlobEvent: BlobEventConstructor interface Body { readonly body: ReadableStream | null; @@ -2544,10 +2576,11 @@ interface BroadcastChannel extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var BroadcastChannel: { +declare interface BroadcastChannelConstructor { prototype: BroadcastChannel; new(name: string): BroadcastChannel; -}; +} +declare var BroadcastChannel: BroadcastChannelConstructor /** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */ interface ByteLengthQueuingStrategy extends QueuingStrategy { @@ -2555,19 +2588,21 @@ interface ByteLengthQueuingStrategy extends QueuingStrategy { readonly size: QueuingStrategySize; } -declare var ByteLengthQueuingStrategy: { +declare interface ByteLengthQueuingStrategyConstructor { prototype: ByteLengthQueuingStrategy; new(init: QueuingStrategyInit): ByteLengthQueuingStrategy; -}; +} +declare var ByteLengthQueuingStrategy: ByteLengthQueuingStrategyConstructor /** A CDATA section that can be used within XML to include extended portions of unescaped text. The symbols < and & don’t need escaping as they normally do when inside a CDATA section. */ interface CDATASection extends Text { } -declare var CDATASection: { +declare interface CDATASectionConstructor { prototype: CDATASection; new(): CDATASection; -}; +} +declare var CDATASection: CDATASectionConstructor interface CSSAnimation extends Animation { readonly animationName: string; @@ -2577,20 +2612,22 @@ interface CSSAnimation extends Animation { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var CSSAnimation: { +declare interface CSSAnimationConstructor { prototype: CSSAnimation; new(): CSSAnimation; -}; +} +declare var CSSAnimation: CSSAnimationConstructor /** A single condition CSS at-rule, which consists of a condition and a statement block. It is a child of CSSGroupingRule. */ interface CSSConditionRule extends CSSGroupingRule { readonly conditionText: string; } -declare var CSSConditionRule: { +declare interface CSSConditionRuleConstructor { prototype: CSSConditionRule; new(): CSSConditionRule; -}; +} +declare var CSSConditionRule: CSSConditionRuleConstructor interface CSSCounterStyleRule extends CSSRule { additiveSymbols: string; @@ -2606,19 +2643,21 @@ interface CSSCounterStyleRule extends CSSRule { system: string; } -declare var CSSCounterStyleRule: { +declare interface CSSCounterStyleRuleConstructor { prototype: CSSCounterStyleRule; new(): CSSCounterStyleRule; -}; +} +declare var CSSCounterStyleRule: CSSCounterStyleRuleConstructor interface CSSFontFaceRule extends CSSRule { readonly style: CSSStyleDeclaration; } -declare var CSSFontFaceRule: { +declare interface CSSFontFaceRuleConstructor { prototype: CSSFontFaceRule; new(): CSSFontFaceRule; -}; +} +declare var CSSFontFaceRule: CSSFontFaceRuleConstructor /** Any CSS at-rule that contains other rules nested within it. */ interface CSSGroupingRule extends CSSRule { @@ -2627,10 +2666,11 @@ interface CSSGroupingRule extends CSSRule { insertRule(rule: string, index?: number): number; } -declare var CSSGroupingRule: { +declare interface CSSGroupingRuleConstructor { prototype: CSSGroupingRule; new(): CSSGroupingRule; -}; +} +declare var CSSGroupingRule: CSSGroupingRuleConstructor interface CSSImportRule extends CSSRule { readonly href: string; @@ -2638,10 +2678,11 @@ interface CSSImportRule extends CSSRule { readonly styleSheet: CSSStyleSheet; } -declare var CSSImportRule: { +declare interface CSSImportRuleConstructor { prototype: CSSImportRule; new(): CSSImportRule; -}; +} +declare var CSSImportRule: CSSImportRuleConstructor /** An object representing a set of style for a given keyframe. It corresponds to the contains of a single keyframe of a @keyframes at-rule. It implements the CSSRule interface with a type value of 8 (CSSRule.KEYFRAME_RULE). */ interface CSSKeyframeRule extends CSSRule { @@ -2649,10 +2690,11 @@ interface CSSKeyframeRule extends CSSRule { readonly style: CSSStyleDeclaration; } -declare var CSSKeyframeRule: { +declare interface CSSKeyframeRuleConstructor { prototype: CSSKeyframeRule; new(): CSSKeyframeRule; -}; +} +declare var CSSKeyframeRule: CSSKeyframeRuleConstructor /** An object representing a complete set of keyframes for a CSS animation. It corresponds to the contains of a whole @keyframes at-rule. It implements the CSSRule interface with a type value of 7 (CSSRule.KEYFRAMES_RULE). */ interface CSSKeyframesRule extends CSSRule { @@ -2663,20 +2705,22 @@ interface CSSKeyframesRule extends CSSRule { findRule(select: string): CSSKeyframeRule | null; } -declare var CSSKeyframesRule: { +declare interface CSSKeyframesRuleConstructor { prototype: CSSKeyframesRule; new(): CSSKeyframesRule; -}; +} +declare var CSSKeyframesRule: CSSKeyframesRuleConstructor /** A single CSS @media rule. It implements the CSSConditionRule interface, and therefore the CSSGroupingRule and the CSSRule interface with a type value of 4 (CSSRule.MEDIA_RULE). */ interface CSSMediaRule extends CSSConditionRule { readonly media: MediaList; } -declare var CSSMediaRule: { +declare interface CSSMediaRuleConstructor { prototype: CSSMediaRule; new(): CSSMediaRule; -}; +} +declare var CSSMediaRule: CSSMediaRuleConstructor /** An object representing a single CSS @namespace at-rule. It implements the CSSRule interface, with a type value of 10 (CSSRule.NAMESPACE_RULE). */ interface CSSNamespaceRule extends CSSRule { @@ -2684,10 +2728,11 @@ interface CSSNamespaceRule extends CSSRule { readonly prefix: string; } -declare var CSSNamespaceRule: { +declare interface CSSNamespaceRuleConstructor { prototype: CSSNamespaceRule; new(): CSSNamespaceRule; -}; +} +declare var CSSNamespaceRule: CSSNamespaceRuleConstructor /** CSSPageRule is an interface representing a single CSS @page rule. It implements the CSSRule interface with a type value of 6 (CSSRule.PAGE_RULE). */ interface CSSPageRule extends CSSGroupingRule { @@ -2695,10 +2740,11 @@ interface CSSPageRule extends CSSGroupingRule { readonly style: CSSStyleDeclaration; } -declare var CSSPageRule: { +declare interface CSSPageRuleConstructor { prototype: CSSPageRule; new(): CSSPageRule; -}; +} +declare var CSSPageRule: CSSPageRuleConstructor /** A single CSS rule. There are several types of rules, listed in the Type constants section below. */ interface CSSRule { @@ -2719,7 +2765,7 @@ interface CSSRule { readonly SUPPORTS_RULE: number; } -declare var CSSRule: { +declare interface CSSRuleConstructor { prototype: CSSRule; new(): CSSRule; readonly CHARSET_RULE: number; @@ -2732,7 +2778,8 @@ declare var CSSRule: { readonly PAGE_RULE: number; readonly STYLE_RULE: number; readonly SUPPORTS_RULE: number; -}; +} +declare var CSSRule: CSSRuleConstructor /** A CSSRuleList is an (indirect-modify only) array-like object containing an ordered collection of CSSRule objects. */ interface CSSRuleList { @@ -2741,10 +2788,11 @@ interface CSSRuleList { [index: number]: CSSRule; } -declare var CSSRuleList: { +declare interface CSSRuleListConstructor { prototype: CSSRuleList; new(): CSSRuleList; -}; +} +declare var CSSRuleList: CSSRuleListConstructor /** An object that is a CSS declaration block, and exposes style information and various style-related methods and properties. */ interface CSSStyleDeclaration { @@ -3284,10 +3332,11 @@ interface CSSStyleDeclaration { [index: number]: string; } -declare var CSSStyleDeclaration: { +declare interface CSSStyleDeclarationConstructor { prototype: CSSStyleDeclaration; new(): CSSStyleDeclaration; -}; +} +declare var CSSStyleDeclaration: CSSStyleDeclarationConstructor /** CSSStyleRule represents a single CSS style rule. It implements the CSSRule interface with a type value of 1 (CSSRule.STYLE_RULE). */ interface CSSStyleRule extends CSSRule { @@ -3295,10 +3344,11 @@ interface CSSStyleRule extends CSSRule { readonly style: CSSStyleDeclaration; } -declare var CSSStyleRule: { +declare interface CSSStyleRuleConstructor { prototype: CSSStyleRule; new(): CSSStyleRule; -}; +} +declare var CSSStyleRule: CSSStyleRuleConstructor /** A single CSS style sheet. It inherits properties and methods from its parent, StyleSheet. */ interface CSSStyleSheet extends StyleSheet { @@ -3316,19 +3366,21 @@ interface CSSStyleSheet extends StyleSheet { replaceSync(text: string): void; } -declare var CSSStyleSheet: { +declare interface CSSStyleSheetConstructor { prototype: CSSStyleSheet; new(options?: CSSStyleSheetInit): CSSStyleSheet; -}; +} +declare var CSSStyleSheet: CSSStyleSheetConstructor /** An object representing a single CSS @supports at-rule. It implements the CSSConditionRule interface, and therefore the CSSRule and CSSGroupingRule interfaces with a type value of 12 (CSSRule.SUPPORTS_RULE). */ interface CSSSupportsRule extends CSSConditionRule { } -declare var CSSSupportsRule: { +declare interface CSSSupportsRuleConstructor { prototype: CSSSupportsRule; new(): CSSSupportsRule; -}; +} +declare var CSSSupportsRule: CSSSupportsRuleConstructor interface CSSTransition extends Animation { readonly transitionProperty: string; @@ -3338,10 +3390,11 @@ interface CSSTransition extends Animation { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var CSSTransition: { +declare interface CSSTransitionConstructor { prototype: CSSTransition; new(): CSSTransition; -}; +} +declare var CSSTransition: CSSTransitionConstructor /** * Provides a storage mechanism for Request / Response object pairs that are cached, for example as part of the ServiceWorker life cycle. Note that the Cache interface is exposed to windowed scopes as well as workers. You don't have to use it in conjunction with service workers, even though it is defined in the service worker spec. @@ -3357,10 +3410,11 @@ interface Cache { put(request: RequestInfo | URL, response: Response): Promise; } -declare var Cache: { +declare interface CacheConstructor { prototype: Cache; new(): Cache; -}; +} +declare var Cache: CacheConstructor /** * The storage for Cache objects. @@ -3374,10 +3428,11 @@ interface CacheStorage { open(cacheName: string): Promise; } -declare var CacheStorage: { +declare interface CacheStorageConstructor { prototype: CacheStorage; new(): CacheStorage; -}; +} +declare var CacheStorage: CacheStorageConstructor interface CanvasCaptureMediaStreamTrack extends MediaStreamTrack { readonly canvas: HTMLCanvasElement; @@ -3388,10 +3443,11 @@ interface CanvasCaptureMediaStreamTrack extends MediaStreamTrack { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var CanvasCaptureMediaStreamTrack: { +declare interface CanvasCaptureMediaStreamTrackConstructor { prototype: CanvasCaptureMediaStreamTrack; new(): CanvasCaptureMediaStreamTrack; -}; +} +declare var CanvasCaptureMediaStreamTrack: CanvasCaptureMediaStreamTrackConstructor interface CanvasCompositing { globalAlpha: number; @@ -3441,10 +3497,11 @@ interface CanvasGradient { addColorStop(offset: number, color: string): void; } -declare var CanvasGradient: { +declare interface CanvasGradientConstructor { prototype: CanvasGradient; new(): CanvasGradient; -}; +} +declare var CanvasGradient: CanvasGradientConstructor interface CanvasImageData { createImageData(sw: number, sh: number, settings?: ImageDataSettings): ImageData; @@ -3487,10 +3544,11 @@ interface CanvasPattern { setTransform(transform?: DOMMatrix2DInit): void; } -declare var CanvasPattern: { +declare interface CanvasPatternConstructor { prototype: CanvasPattern; new(): CanvasPattern; -}; +} +declare var CanvasPattern: CanvasPatternConstructor interface CanvasRect { clearRect(x: number, y: number, w: number, h: number): void; @@ -3504,10 +3562,11 @@ interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, C getContextAttributes(): CanvasRenderingContext2DSettings; } -declare var CanvasRenderingContext2D: { +declare interface CanvasRenderingContext2DConstructor { prototype: CanvasRenderingContext2D; new(): CanvasRenderingContext2D; -}; +} +declare var CanvasRenderingContext2D: CanvasRenderingContext2DConstructor interface CanvasShadowStyles { shadowBlur: number; @@ -3554,19 +3613,21 @@ interface CanvasUserInterface { interface ChannelMergerNode extends AudioNode { } -declare var ChannelMergerNode: { +declare interface ChannelMergerNodeConstructor { prototype: ChannelMergerNode; new(context: BaseAudioContext, options?: ChannelMergerOptions): ChannelMergerNode; -}; +} +declare var ChannelMergerNode: ChannelMergerNodeConstructor /** The ChannelSplitterNode interface, often used in conjunction with its opposite, ChannelMergerNode, separates the different channels of an audio source into a set of mono outputs. This is useful for accessing each channel separately, e.g. for performing channel mixing where gain must be separately controlled on each channel. */ interface ChannelSplitterNode extends AudioNode { } -declare var ChannelSplitterNode: { +declare interface ChannelSplitterNodeConstructor { prototype: ChannelSplitterNode; new(context: BaseAudioContext, options?: ChannelSplitterOptions): ChannelSplitterNode; -}; +} +declare var ChannelSplitterNode: ChannelSplitterNodeConstructor /** The CharacterData abstract interface represents a Node object that contains characters. This is an abstract interface, meaning there aren't any object of type CharacterData: it is implemented by other interfaces, like Text, Comment, or ProcessingInstruction which aren't abstract. */ interface CharacterData extends Node, ChildNode, NonDocumentTypeChildNode { @@ -3580,10 +3641,11 @@ interface CharacterData extends Node, ChildNode, NonDocumentTypeChildNode { substringData(offset: number, count: number): string; } -declare var CharacterData: { +declare interface CharacterDataConstructor { prototype: CharacterData; new(): CharacterData; -}; +} +declare var CharacterData: CharacterDataConstructor interface ChildNode extends Node { /** @@ -3620,20 +3682,22 @@ interface Clipboard extends EventTarget { writeText(data: string): Promise; } -declare var Clipboard: { +declare interface ClipboardConstructor { prototype: Clipboard; new(): Clipboard; -}; +} +declare var Clipboard: ClipboardConstructor /** Events providing information related to modification of the clipboard, that is cut, copy, and paste events. */ interface ClipboardEvent extends Event { readonly clipboardData: DataTransfer | null; } -declare var ClipboardEvent: { +declare interface ClipboardEventConstructor { prototype: ClipboardEvent; new(type: string, eventInitDict?: ClipboardEventInit): ClipboardEvent; -}; +} +declare var ClipboardEvent: ClipboardEventConstructor /** Available only in secure contexts. */ interface ClipboardItem { @@ -3641,10 +3705,11 @@ interface ClipboardItem { getType(type: string): Promise; } -declare var ClipboardItem: { +declare interface ClipboardItemConstructor { prototype: ClipboardItem; new(items: Record>, options?: ClipboardItemOptions): ClipboardItem; -}; +} +declare var ClipboardItem: ClipboardItemConstructor /** A CloseEvent is sent to clients using WebSockets when the connection is closed. This is delivered to the listener indicated by the WebSocket object's onclose attribute. */ interface CloseEvent extends Event { @@ -3656,19 +3721,21 @@ interface CloseEvent extends Event { readonly wasClean: boolean; } -declare var CloseEvent: { +declare interface CloseEventConstructor { prototype: CloseEvent; new(type: string, eventInitDict?: CloseEventInit): CloseEvent; -}; +} +declare var CloseEvent: CloseEventConstructor /** Textual notations within markup; although it is generally not visually shown, such comments are available to be read in the source view. */ interface Comment extends CharacterData { } -declare var Comment: { +declare interface CommentConstructor { prototype: Comment; new(data?: string): Comment; -}; +} +declare var Comment: CommentConstructor /** The DOM CompositionEvent represents events that occur due to the user indirectly entering text. */ interface CompositionEvent extends UIEvent { @@ -3677,10 +3744,11 @@ interface CompositionEvent extends UIEvent { initCompositionEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: WindowProxy | null, dataArg?: string): void; } -declare var CompositionEvent: { +declare interface CompositionEventConstructor { prototype: CompositionEvent; new(type: string, eventInitDict?: CompositionEventInit): CompositionEvent; -}; +} +declare var CompositionEvent: CompositionEventConstructor interface ConstantSourceNode extends AudioScheduledSourceNode { readonly offset: AudioParam; @@ -3690,10 +3758,11 @@ interface ConstantSourceNode extends AudioScheduledSourceNode { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var ConstantSourceNode: { +declare interface ConstantSourceNodeConstructor { prototype: ConstantSourceNode; new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode; -}; +} +declare var ConstantSourceNode: ConstantSourceNodeConstructor /** 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. */ interface ConvolverNode extends AudioNode { @@ -3701,10 +3770,11 @@ interface ConvolverNode extends AudioNode { normalize: boolean; } -declare var ConvolverNode: { +declare interface ConvolverNodeConstructor { prototype: ConvolverNode; new(context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode; -}; +} +declare var ConvolverNode: ConvolverNodeConstructor /** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */ interface CountQueuingStrategy extends QueuingStrategy { @@ -3712,10 +3782,11 @@ interface CountQueuingStrategy extends QueuingStrategy { readonly size: QueuingStrategySize; } -declare var CountQueuingStrategy: { +declare interface CountQueuingStrategyConstructor { prototype: CountQueuingStrategy; new(init: QueuingStrategyInit): CountQueuingStrategy; -}; +} +declare var CountQueuingStrategy: CountQueuingStrategyConstructor /** Available only in secure contexts. */ interface Credential { @@ -3723,10 +3794,11 @@ interface Credential { readonly type: string; } -declare var Credential: { +declare interface CredentialConstructor { prototype: Credential; new(): Credential; -}; +} +declare var Credential: CredentialConstructor /** Available only in secure contexts. */ interface CredentialsContainer { @@ -3736,10 +3808,11 @@ interface CredentialsContainer { store(credential: Credential): Promise; } -declare var CredentialsContainer: { +declare interface CredentialsContainerConstructor { prototype: CredentialsContainer; new(): CredentialsContainer; -}; +} +declare var CredentialsContainer: CredentialsContainerConstructor /** Basic cryptography features available in the current context. It allows access to a cryptographically strong random number generator and to cryptographic primitives. */ interface Crypto { @@ -3750,10 +3823,11 @@ interface Crypto { randomUUID(): string; } -declare var Crypto: { +declare interface CryptoConstructor { prototype: Crypto; new(): Crypto; -}; +} +declare var Crypto: CryptoConstructor /** * The CryptoKey dictionary of the Web Crypto API represents a cryptographic key. @@ -3766,10 +3840,11 @@ interface CryptoKey { readonly usages: KeyUsage[]; } -declare var CryptoKey: { +declare interface CryptoKeyConstructor { prototype: CryptoKey; new(): CryptoKey; -}; +} +declare var CryptoKey: CryptoKeyConstructor interface CustomElementRegistry { define(name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions): void; @@ -3778,10 +3853,11 @@ interface CustomElementRegistry { whenDefined(name: string): Promise; } -declare var CustomElementRegistry: { +declare interface CustomElementRegistryConstructor { prototype: CustomElementRegistry; new(): CustomElementRegistry; -}; +} +declare var CustomElementRegistry: CustomElementRegistryConstructor interface CustomEvent extends Event { /** Returns any custom data event was created with. Typically used for synthetic events. */ @@ -3790,10 +3866,11 @@ interface CustomEvent extends Event { initCustomEvent(type: string, bubbles?: boolean, cancelable?: boolean, detail?: T): void; } -declare var CustomEvent: { +declare interface CustomEventConstructor { prototype: CustomEvent; new(type: string, eventInitDict?: CustomEventInit): CustomEvent; -}; +} +declare var CustomEvent: CustomEventConstructor /** An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API. */ interface DOMException extends Error { @@ -3828,7 +3905,7 @@ interface DOMException extends Error { readonly WRONG_DOCUMENT_ERR: number; } -declare var DOMException: { +declare interface DOMExceptionConstructor { prototype: DOMException; new(message?: string, name?: string): DOMException; readonly ABORT_ERR: number; @@ -3856,7 +3933,8 @@ declare var DOMException: { readonly URL_MISMATCH_ERR: number; readonly VALIDATION_ERR: number; readonly WRONG_DOCUMENT_ERR: number; -}; +} +declare var DOMException: DOMExceptionConstructor /** An object providing methods which are not dependent on any particular document. Such an object is returned by the Document.implementation property. */ interface DOMImplementation { @@ -3867,10 +3945,11 @@ interface DOMImplementation { hasFeature(...args: any[]): true; } -declare var DOMImplementation: { +declare interface DOMImplementationConstructor { prototype: DOMImplementation; new(): DOMImplementation; -}; +} +declare var DOMImplementation: DOMImplementationConstructor interface DOMMatrix extends DOMMatrixReadOnly { a: number; @@ -3909,13 +3988,14 @@ interface DOMMatrix extends DOMMatrixReadOnly { translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix; } -declare var DOMMatrix: { +declare interface DOMMatrixConstructor { prototype: DOMMatrix; new(init?: string | number[]): DOMMatrix; fromFloat32Array(array32: Float32Array): DOMMatrix; fromFloat64Array(array64: Float64Array): DOMMatrix; fromMatrix(other?: DOMMatrixInit): DOMMatrix; -}; +} +declare var DOMMatrix: DOMMatrixConstructor type SVGMatrix = DOMMatrix; declare var SVGMatrix: typeof DOMMatrix; @@ -3969,14 +4049,15 @@ interface DOMMatrixReadOnly { toString(): string; } -declare var DOMMatrixReadOnly: { +declare interface DOMMatrixReadOnlyConstructor { prototype: DOMMatrixReadOnly; new(init?: string | number[]): DOMMatrixReadOnly; fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly; fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly; fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly; toString(): string; -}; +} +declare var DOMMatrixReadOnly: DOMMatrixReadOnlyConstructor /** Provides the ability to parse XML or HTML source code from a string into a DOM Document. */ interface DOMParser { @@ -3992,10 +4073,11 @@ interface DOMParser { parseFromString(string: string, type: DOMParserSupportedType): Document; } -declare var DOMParser: { +declare interface DOMParserConstructor { prototype: DOMParser; new(): DOMParser; -}; +} +declare var DOMParser: DOMParserConstructor interface DOMPoint extends DOMPointReadOnly { w: number; @@ -4004,11 +4086,12 @@ interface DOMPoint extends DOMPointReadOnly { z: number; } -declare var DOMPoint: { +declare interface DOMPointConstructor { prototype: DOMPoint; new(x?: number, y?: number, z?: number, w?: number): DOMPoint; fromPoint(other?: DOMPointInit): DOMPoint; -}; +} +declare var DOMPoint: DOMPointConstructor type SVGPoint = DOMPoint; declare var SVGPoint: typeof DOMPoint; @@ -4022,11 +4105,12 @@ interface DOMPointReadOnly { toJSON(): any; } -declare var DOMPointReadOnly: { +declare interface DOMPointReadOnlyConstructor { prototype: DOMPointReadOnly; new(x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly; fromPoint(other?: DOMPointInit): DOMPointReadOnly; -}; +} +declare var DOMPointReadOnly: DOMPointReadOnlyConstructor interface DOMQuad { readonly p1: DOMPoint; @@ -4037,12 +4121,13 @@ interface DOMQuad { toJSON(): any; } -declare var DOMQuad: { +declare interface DOMQuadConstructor { prototype: DOMQuad; new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; fromQuad(other?: DOMQuadInit): DOMQuad; fromRect(other?: DOMRectInit): DOMQuad; -}; +} +declare var DOMQuad: DOMQuadConstructor interface DOMRect extends DOMRectReadOnly { height: number; @@ -4051,11 +4136,12 @@ interface DOMRect extends DOMRectReadOnly { y: number; } -declare var DOMRect: { +declare interface DOMRectConstructor { prototype: DOMRect; new(x?: number, y?: number, width?: number, height?: number): DOMRect; fromRect(other?: DOMRectInit): DOMRect; -}; +} +declare var DOMRect: DOMRectConstructor type SVGRect = DOMRect; declare var SVGRect: typeof DOMRect; @@ -4066,10 +4152,11 @@ interface DOMRectList { [index: number]: DOMRect; } -declare var DOMRectList: { +declare interface DOMRectListConstructor { prototype: DOMRectList; new(): DOMRectList; -}; +} +declare var DOMRectList: DOMRectListConstructor interface DOMRectReadOnly { readonly bottom: number; @@ -4083,11 +4170,12 @@ interface DOMRectReadOnly { toJSON(): any; } -declare var DOMRectReadOnly: { +declare interface DOMRectReadOnlyConstructor { prototype: DOMRectReadOnly; new(x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; fromRect(other?: DOMRectInit): DOMRectReadOnly; -}; +} +declare var DOMRectReadOnly: DOMRectReadOnlyConstructor /** A type returned by some APIs which contains a list of DOMString (strings). */ interface DOMStringList { @@ -4100,20 +4188,22 @@ interface DOMStringList { [index: number]: string; } -declare var DOMStringList: { +declare interface DOMStringListConstructor { prototype: DOMStringList; new(): DOMStringList; -}; +} +declare var DOMStringList: DOMStringListConstructor /** Used by the dataset HTML attribute to represent data for custom attributes added to elements. */ interface DOMStringMap { [name: string]: string | undefined; } -declare var DOMStringMap: { +declare interface DOMStringMapConstructor { prototype: DOMStringMap; new(): DOMStringMap; -}; +} +declare var DOMStringMap: DOMStringMapConstructor /** A set of space-separated tokens. Such a set is returned by Element.classList, HTMLLinkElement.relList, HTMLAnchorElement.relList, HTMLAreaElement.relList, HTMLIframeElement.sandbox, or HTMLOutputElement.htmlFor. It is indexed beginning with 0 as with JavaScript Array objects. DOMTokenList is always case-sensitive. */ interface DOMTokenList { @@ -4176,10 +4266,11 @@ interface DOMTokenList { [index: number]: string; } -declare var DOMTokenList: { +declare interface DOMTokenListConstructor { prototype: DOMTokenList; new(): DOMTokenList; -}; +} +declare var DOMTokenList: DOMTokenListConstructor /** Used to hold the data that is being dragged during a drag and drop operation. It may hold one or more data items, each of one or more data types. For more information about drag and drop, see HTML Drag and Drop API. */ interface DataTransfer { @@ -4215,10 +4306,11 @@ interface DataTransfer { setDragImage(image: Element, x: number, y: number): void; } -declare var DataTransfer: { +declare interface DataTransferConstructor { prototype: DataTransfer; new(): DataTransfer; -}; +} +declare var DataTransfer: DataTransferConstructor /** One drag data item. During a drag operation, each drag event has a dataTransfer property which contains a list of drag data items. Each item in the list is a DataTransferItem object. */ interface DataTransferItem { @@ -4233,10 +4325,11 @@ interface DataTransferItem { webkitGetAsEntry(): FileSystemEntry | null; } -declare var DataTransferItem: { +declare interface DataTransferItemConstructor { prototype: DataTransferItem; new(): DataTransferItem; -}; +} +declare var DataTransferItem: DataTransferItemConstructor /** A list of DataTransferItem objects representing items being dragged. During a drag operation, each DragEvent has a dataTransfer property and that property is a DataTransferItemList. */ interface DataTransferItemList { @@ -4252,20 +4345,22 @@ interface DataTransferItemList { [index: number]: DataTransferItem; } -declare var DataTransferItemList: { +declare interface DataTransferItemListConstructor { prototype: DataTransferItemList; new(): DataTransferItemList; -}; +} +declare var DataTransferItemList: DataTransferItemListConstructor /** A delay-line; an AudioNode audio-processing module that causes a delay between the arrival of an input data and its propagation to the output. */ interface DelayNode extends AudioNode { readonly delayTime: AudioParam; } -declare var DelayNode: { +declare interface DelayNodeConstructor { prototype: DelayNode; new(context: BaseAudioContext, options?: DelayOptions): DelayNode; -}; +} +declare var DelayNode: DelayNodeConstructor /** * The DeviceMotionEvent provides web developers with information about the speed of changes for the device's position and orientation. @@ -4278,10 +4373,11 @@ interface DeviceMotionEvent extends Event { readonly rotationRate: DeviceMotionEventRotationRate | null; } -declare var DeviceMotionEvent: { +declare interface DeviceMotionEventConstructor { prototype: DeviceMotionEvent; new(type: string, eventInitDict?: DeviceMotionEventInit): DeviceMotionEvent; -}; +} +declare var DeviceMotionEvent: DeviceMotionEventConstructor /** Available only in secure contexts. */ interface DeviceMotionEventAcceleration { @@ -4308,10 +4404,11 @@ interface DeviceOrientationEvent extends Event { readonly gamma: number | null; } -declare var DeviceOrientationEvent: { +declare interface DeviceOrientationEventConstructor { prototype: DeviceOrientationEvent; new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent; -}; +} +declare var DeviceOrientationEvent: DeviceOrientationEventConstructor interface DocumentEventMap extends DocumentAndElementEventHandlersEventMap, GlobalEventHandlersEventMap { "DOMContentLoaded": Event; @@ -4713,10 +4810,11 @@ interface Document extends Node, DocumentAndElementEventHandlers, DocumentOrShad removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var Document: { +declare interface DocumentConstructor { prototype: Document; new(): Document; -}; +} +declare var Document: DocumentConstructor interface DocumentAndElementEventHandlersEventMap { "copy": ClipboardEvent; @@ -4740,10 +4838,11 @@ interface DocumentFragment extends Node, NonElementParentNode, ParentNode { getElementById(elementId: string): HTMLElement | null; } -declare var DocumentFragment: { +declare interface DocumentFragmentConstructor { prototype: DocumentFragment; new(): DocumentFragment; -}; +} +declare var DocumentFragment: DocumentFragmentConstructor interface DocumentOrShadowRoot { /** @@ -4774,10 +4873,11 @@ interface DocumentOrShadowRoot { interface DocumentTimeline extends AnimationTimeline { } -declare var DocumentTimeline: { +declare interface DocumentTimelineConstructor { prototype: DocumentTimeline; new(options?: DocumentTimelineOptions): DocumentTimeline; -}; +} +declare var DocumentTimeline: DocumentTimelineConstructor /** A Node containing a doctype. */ interface DocumentType extends Node, ChildNode { @@ -4787,10 +4887,11 @@ interface DocumentType extends Node, ChildNode { readonly systemId: string; } -declare var DocumentType: { +declare interface DocumentTypeConstructor { prototype: DocumentType; new(): DocumentType; -}; +} +declare var DocumentType: DocumentTypeConstructor /** A DOM event that represents a drag and drop interaction. The user initiates a drag by placing a pointer device (such as a mouse) on the touch surface and then dragging the pointer to a new location (such as another DOM element). Applications are free to interpret a drag and drop interaction in an application-specific way. */ interface DragEvent extends MouseEvent { @@ -4798,10 +4899,11 @@ interface DragEvent extends MouseEvent { readonly dataTransfer: DataTransfer | null; } -declare var DragEvent: { +declare interface DragEventConstructor { prototype: DragEvent; new(type: string, eventInitDict?: DragEventInit): DragEvent; -}; +} +declare var DragEvent: DragEventConstructor /** Inherits properties from its parent, AudioNode. */ interface DynamicsCompressorNode extends AudioNode { @@ -4813,10 +4915,11 @@ interface DynamicsCompressorNode extends AudioNode { readonly threshold: AudioParam; } -declare var DynamicsCompressorNode: { +declare interface DynamicsCompressorNodeConstructor { prototype: DynamicsCompressorNode; new(context: BaseAudioContext, options?: DynamicsCompressorOptions): DynamicsCompressorNode; -}; +} +declare var DynamicsCompressorNode: DynamicsCompressorNodeConstructor interface EXT_blend_minmax { readonly MAX_EXT: GLenum; @@ -4986,10 +5089,11 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var Element: { +declare interface ElementConstructor { prototype: Element; new(): Element; -}; +} +declare var Element: ElementConstructor interface ElementCSSInlineStyle { readonly style: CSSStyleDeclaration; @@ -5029,10 +5133,11 @@ interface ElementInternals extends ARIAMixin { setValidity(flags?: ValidityStateFlags, message?: string, anchor?: HTMLElement): void; } -declare var ElementInternals: { +declare interface ElementInternalsConstructor { prototype: ElementInternals; new(): ElementInternals; -}; +} +declare var ElementInternals: ElementInternalsConstructor /** Events providing information related to errors in scripts or in files. */ interface ErrorEvent extends Event { @@ -5043,10 +5148,11 @@ interface ErrorEvent extends Event { readonly message: string; } -declare var ErrorEvent: { +declare interface ErrorEventConstructor { prototype: ErrorEvent; new(type: string, eventInitDict?: ErrorEventInit): ErrorEvent; -}; +} +declare var ErrorEvent: ErrorEventConstructor /** An event which takes place in the DOM. */ interface Event { @@ -5091,23 +5197,25 @@ interface Event { readonly NONE: number; } -declare var Event: { +declare interface EventConstructor { prototype: Event; new(type: string, eventInitDict?: EventInit): Event; readonly AT_TARGET: number; readonly BUBBLING_PHASE: number; readonly CAPTURING_PHASE: number; readonly NONE: number; -}; +} +declare var Event: EventConstructor interface EventCounts { forEach(callbackfn: (value: number, key: string, parent: EventCounts) => void, thisArg?: any): void; } -declare var EventCounts: { +declare interface EventCountsConstructor { prototype: EventCounts; new(): EventCounts; -}; +} +declare var EventCounts: EventCountsConstructor interface EventListener { (evt: Event): void; @@ -5146,13 +5254,14 @@ interface EventSource extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var EventSource: { +declare interface EventSourceConstructor { prototype: EventSource; new(url: string | URL, eventSourceInitDict?: EventSourceInit): EventSource; readonly CLOSED: number; readonly CONNECTING: number; readonly OPEN: number; -}; +} +declare var EventSource: EventSourceConstructor /** EventTarget is a DOM interface implemented by objects that can receive events and may have listeners for them. */ interface EventTarget { @@ -5178,10 +5287,11 @@ interface EventTarget { removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void; } -declare var EventTarget: { +declare interface EventTargetConstructor { prototype: EventTarget; new(): EventTarget; -}; +} +declare var EventTarget: EventTargetConstructor /** @deprecated */ interface External { @@ -5192,10 +5302,12 @@ interface External { } /** @deprecated */ -declare var External: { +declare interface ExternalConstructor { prototype: External; new(): External; -}; +} +/** @deprecated */ +declare var External: ExternalConstructor /** Provides information about files and allows JavaScript in a web page to access their content. */ interface File extends Blob { @@ -5204,10 +5316,11 @@ interface File extends Blob { readonly webkitRelativePath: string; } -declare var File: { +declare interface FileConstructor { prototype: File; new(fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File; -}; +} +declare var File: FileConstructor /** An object of this type is returned by the files property of the HTML element; this lets you access the list of files selected with the element. It's also used for a list of files dropped into web content when using the drag and drop API; see the DataTransfer object for details on this usage. */ interface FileList { @@ -5216,10 +5329,11 @@ interface FileList { [index: number]: File; } -declare var FileList: { +declare interface FileListConstructor { prototype: FileList; new(): FileList; -}; +} +declare var FileList: FileListConstructor interface FileReaderEventMap { "abort": ProgressEvent; @@ -5255,23 +5369,25 @@ interface FileReader extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var FileReader: { +declare interface FileReaderConstructor { prototype: FileReader; new(): FileReader; readonly DONE: number; readonly EMPTY: number; readonly LOADING: number; -}; +} +declare var FileReader: FileReaderConstructor interface FileSystem { readonly name: string; readonly root: FileSystemDirectoryEntry; } -declare var FileSystem: { +declare interface FileSystemConstructor { prototype: FileSystem; new(): FileSystem; -}; +} +declare var FileSystem: FileSystemConstructor interface FileSystemDirectoryEntry extends FileSystemEntry { createReader(): FileSystemDirectoryReader; @@ -5279,10 +5395,11 @@ interface FileSystemDirectoryEntry extends FileSystemEntry { getFile(path?: string | null, options?: FileSystemFlags, successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void; } -declare var FileSystemDirectoryEntry: { +declare interface FileSystemDirectoryEntryConstructor { prototype: FileSystemDirectoryEntry; new(): FileSystemDirectoryEntry; -}; +} +declare var FileSystemDirectoryEntry: FileSystemDirectoryEntryConstructor /** Available only in secure contexts. */ interface FileSystemDirectoryHandle extends FileSystemHandle { @@ -5293,19 +5410,21 @@ interface FileSystemDirectoryHandle extends FileSystemHandle { resolve(possibleDescendant: FileSystemHandle): Promise; } -declare var FileSystemDirectoryHandle: { +declare interface FileSystemDirectoryHandleConstructor { prototype: FileSystemDirectoryHandle; new(): FileSystemDirectoryHandle; -}; +} +declare var FileSystemDirectoryHandle: FileSystemDirectoryHandleConstructor interface FileSystemDirectoryReader { readEntries(successCallback: FileSystemEntriesCallback, errorCallback?: ErrorCallback): void; } -declare var FileSystemDirectoryReader: { +declare interface FileSystemDirectoryReaderConstructor { prototype: FileSystemDirectoryReader; new(): FileSystemDirectoryReader; -}; +} +declare var FileSystemDirectoryReader: FileSystemDirectoryReaderConstructor interface FileSystemEntry { readonly filesystem: FileSystem; @@ -5316,19 +5435,21 @@ interface FileSystemEntry { getParent(successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void; } -declare var FileSystemEntry: { +declare interface FileSystemEntryConstructor { prototype: FileSystemEntry; new(): FileSystemEntry; -}; +} +declare var FileSystemEntry: FileSystemEntryConstructor interface FileSystemFileEntry extends FileSystemEntry { file(successCallback: FileCallback, errorCallback?: ErrorCallback): void; } -declare var FileSystemFileEntry: { +declare interface FileSystemFileEntryConstructor { prototype: FileSystemFileEntry; new(): FileSystemFileEntry; -}; +} +declare var FileSystemFileEntry: FileSystemFileEntryConstructor /** Available only in secure contexts. */ interface FileSystemFileHandle extends FileSystemHandle { @@ -5336,10 +5457,11 @@ interface FileSystemFileHandle extends FileSystemHandle { getFile(): Promise; } -declare var FileSystemFileHandle: { +declare interface FileSystemFileHandleConstructor { prototype: FileSystemFileHandle; new(): FileSystemFileHandle; -}; +} +declare var FileSystemFileHandle: FileSystemFileHandleConstructor /** Available only in secure contexts. */ interface FileSystemHandle { @@ -5348,20 +5470,22 @@ interface FileSystemHandle { isSameEntry(other: FileSystemHandle): Promise; } -declare var FileSystemHandle: { +declare interface FileSystemHandleConstructor { prototype: FileSystemHandle; new(): FileSystemHandle; -}; +} +declare var FileSystemHandle: FileSystemHandleConstructor /** Focus-related events like focus, blur, focusin, or focusout. */ interface FocusEvent extends UIEvent { readonly relatedTarget: EventTarget | null; } -declare var FocusEvent: { +declare interface FocusEventConstructor { prototype: FocusEvent; new(type: string, eventInitDict?: FocusEventInit): FocusEvent; -}; +} +declare var FocusEvent: FocusEventConstructor interface FontFace { ascentOverride: string; @@ -5381,10 +5505,11 @@ interface FontFace { load(): Promise; } -declare var FontFace: { +declare interface FontFaceConstructor { prototype: FontFace; new(family: string, source: string | BinaryData, descriptors?: FontFaceDescriptors): FontFace; -}; +} +declare var FontFace: FontFaceConstructor interface FontFaceSetEventMap { "loading": Event; @@ -5407,19 +5532,21 @@ interface FontFaceSet extends EventTarget { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var FontFaceSet: { +declare interface FontFaceSetConstructor { prototype: FontFaceSet; new(initialFaces: FontFace[]): FontFaceSet; -}; +} +declare var FontFaceSet: FontFaceSetConstructor interface FontFaceSetLoadEvent extends Event { readonly fontfaces: ReadonlyArray; } -declare var FontFaceSetLoadEvent: { +declare interface FontFaceSetLoadEventConstructor { prototype: FontFaceSetLoadEvent; new(type: string, eventInitDict?: FontFaceSetLoadEventInit): FontFaceSetLoadEvent; -}; +} +declare var FontFaceSetLoadEvent: FontFaceSetLoadEventConstructor interface FontFaceSource { readonly fonts: FontFaceSet; @@ -5436,30 +5563,33 @@ interface FormData { forEach(callbackfn: (value: FormDataEntryValue, key: string, parent: FormData) => void, thisArg?: any): void; } -declare var FormData: { +declare interface FormDataConstructor { prototype: FormData; new(form?: HTMLFormElement): FormData; -}; +} +declare var FormData: FormDataConstructor interface FormDataEvent extends Event { /** Returns a FormData object representing names and values of elements associated to the target form. Operations on the FormData object will affect form data to be submitted. */ readonly formData: FormData; } -declare var FormDataEvent: { +declare interface FormDataEventConstructor { prototype: FormDataEvent; new(type: string, eventInitDict: FormDataEventInit): FormDataEvent; -}; +} +declare var FormDataEvent: FormDataEventConstructor /** A change in volume. It is an AudioNode audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A GainNode always has exactly one input and one output, both with the same number of channels. */ interface GainNode extends AudioNode { readonly gain: AudioParam; } -declare var GainNode: { +declare interface GainNodeConstructor { prototype: GainNode; new(context: BaseAudioContext, options?: GainOptions): GainNode; -}; +} +declare var GainNode: GainNodeConstructor /** * This Gamepad API interface defines an individual gamepad or other controller, allowing access to information such as button presses, axis positions, and id. @@ -5476,10 +5606,11 @@ interface Gamepad { readonly timestamp: DOMHighResTimeStamp; } -declare var Gamepad: { +declare interface GamepadConstructor { prototype: Gamepad; new(): Gamepad; -}; +} +declare var Gamepad: GamepadConstructor /** * 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. @@ -5491,10 +5622,11 @@ interface GamepadButton { readonly value: number; } -declare var GamepadButton: { +declare interface GamepadButtonConstructor { prototype: GamepadButton; new(): GamepadButton; -}; +} +declare var GamepadButton: GamepadButtonConstructor /** * 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. @@ -5504,20 +5636,22 @@ interface GamepadEvent extends Event { readonly gamepad: Gamepad; } -declare var GamepadEvent: { +declare interface GamepadEventConstructor { prototype: GamepadEvent; new(type: string, eventInitDict: GamepadEventInit): GamepadEvent; -}; +} +declare var GamepadEvent: GamepadEventConstructor /** This Gamepad API interface represents hardware in the controller designed to provide haptic feedback to the user (if available), most commonly vibration hardware. */ interface GamepadHapticActuator { readonly type: GamepadHapticActuatorType; } -declare var GamepadHapticActuator: { +declare interface GamepadHapticActuatorConstructor { prototype: GamepadHapticActuator; new(): GamepadHapticActuator; -}; +} +declare var GamepadHapticActuator: GamepadHapticActuatorConstructor interface GenericTransformStream { readonly readable: ReadableStream; @@ -5531,10 +5665,11 @@ interface Geolocation { watchPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions): number; } -declare var Geolocation: { +declare interface GeolocationConstructor { prototype: Geolocation; new(): Geolocation; -}; +} +declare var Geolocation: GeolocationConstructor /** Available only in secure contexts. */ interface GeolocationCoordinates { @@ -5547,10 +5682,11 @@ interface GeolocationCoordinates { readonly speed: number | null; } -declare var GeolocationCoordinates: { +declare interface GeolocationCoordinatesConstructor { prototype: GeolocationCoordinates; new(): GeolocationCoordinates; -}; +} +declare var GeolocationCoordinates: GeolocationCoordinatesConstructor /** Available only in secure contexts. */ interface GeolocationPosition { @@ -5558,10 +5694,11 @@ interface GeolocationPosition { readonly timestamp: EpochTimeStamp; } -declare var GeolocationPosition: { +declare interface GeolocationPositionConstructor { prototype: GeolocationPosition; new(): GeolocationPosition; -}; +} +declare var GeolocationPosition: GeolocationPositionConstructor interface GeolocationPositionError { readonly code: number; @@ -5571,13 +5708,14 @@ interface GeolocationPositionError { readonly TIMEOUT: number; } -declare var GeolocationPositionError: { +declare interface GeolocationPositionErrorConstructor { prototype: GeolocationPositionError; new(): GeolocationPositionError; readonly PERMISSION_DENIED: number; readonly POSITION_UNAVAILABLE: number; readonly TIMEOUT: number; -}; +} +declare var GeolocationPositionError: GeolocationPositionErrorConstructor interface GlobalEventHandlersEventMap { "abort": UIEvent; @@ -5974,10 +6112,11 @@ interface HTMLAllCollection { [index: number]: Element; } -declare var HTMLAllCollection: { +declare interface HTMLAllCollectionConstructor { prototype: HTMLAllCollection; new(): HTMLAllCollection; -}; +} +declare var HTMLAllCollection: HTMLAllCollectionConstructor /** Hyperlink elements and provides special properties and methods (beyond those of the regular HTMLElement object interface that they inherit from) for manipulating the layout and presentation of such elements. */ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils { @@ -6025,10 +6164,11 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var HTMLAnchorElement: { +declare interface HTMLAnchorElementConstructor { prototype: HTMLAnchorElement; new(): HTMLAnchorElement; -}; +} +declare var HTMLAnchorElement: HTMLAnchorElementConstructor /** Provides special properties and methods (beyond those of the regular object HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of elements. */ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils { @@ -6056,10 +6196,11 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils { removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } -declare var HTMLAreaElement: { +declare interface HTMLAreaElementConstructor { prototype: HTMLAreaElement; new(): HTMLAreaElement; -}; +} +declare var HTMLAreaElement: HTMLAreaElementConstructor /** Provides access to the properties of