@@ -3669,40 +3669,6 @@ interface ConcatParams extends Algorithm {
36693669 publicInfo?: Uint8Array;
36703670}
36713671
3672- /** Provides access to the browser's debugging console (e.g. the Web Console in Firefox). The specifics of how it works varies from browser to browser, but there is a de facto set of features that are typically provided. */
3673- interface Console {
3674- memory: any;
3675- assert(condition?: boolean, message?: string, ...data: any[]): void;
3676- clear(): void;
3677- count(label?: string): void;
3678- debug(message?: any, ...optionalParams: any[]): void;
3679- dir(value?: any, ...optionalParams: any[]): void;
3680- dirxml(value: any): void;
3681- error(message?: any, ...optionalParams: any[]): void;
3682- exception(message?: string, ...optionalParams: any[]): void;
3683- group(groupTitle?: string, ...optionalParams: any[]): void;
3684- groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void;
3685- groupEnd(): void;
3686- info(message?: any, ...optionalParams: any[]): void;
3687- log(message?: any, ...optionalParams: any[]): void;
3688- markTimeline(label?: string): void;
3689- profile(reportName?: string): void;
3690- profileEnd(reportName?: string): void;
3691- table(...tabularData: any[]): void;
3692- time(label?: string): void;
3693- timeEnd(label?: string): void;
3694- timeStamp(label?: string): void;
3695- timeline(label?: string): void;
3696- timelineEnd(label?: string): void;
3697- trace(message?: any, ...optionalParams: any[]): void;
3698- warn(message?: any, ...optionalParams: any[]): void;
3699- }
3700-
3701- declare var Console: {
3702- prototype: Console;
3703- new(): Console;
3704- };
3705-
37063672interface ConstantSourceNode extends AudioScheduledSourceNode {
37073673 readonly offset: AudioParam;
37083674 addEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: ConstantSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -18512,7 +18478,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
1851218478}
1851318479
1851418480/** A window containing a DOM document; the document property points to the DOM document loaded in that window. */
18515- interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandlers, IDBEnvironment, WindowBase64, WindowConsole, WindowEventHandlers, WindowLocalStorage, WindowOrWorkerGlobalScope, WindowSessionStorage, WindowTimers {
18481+ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandlers, IDBEnvironment, WindowBase64, WindowEventHandlers, WindowLocalStorage, WindowOrWorkerGlobalScope, WindowSessionStorage, WindowTimers {
1851618482 readonly applicationCache: ApplicationCache;
1851718483 readonly caches: CacheStorage;
1851818484 readonly clientInformation: Navigator;
@@ -18651,10 +18617,6 @@ interface WindowBase64 {
1865118617 btoa(rawString: string): string;
1865218618}
1865318619
18654- interface WindowConsole {
18655- readonly console: Console;
18656- }
18657-
1865818620interface WindowEventHandlersEventMap {
1865918621 "afterprint": Event;
1866018622 "beforeprint": Event;
@@ -19058,6 +19020,31 @@ declare var webkitRTCPeerConnection: {
1905819020
1905919021declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
1906019022
19023+ declare namespace console {
19024+ var memory: any;
19025+ function assert(condition?: boolean, ...data: any[]): void;
19026+ function clear(): void;
19027+ function count(label?: string): void;
19028+ function countReset(label?: string): void;
19029+ function debug(...data: any[]): void;
19030+ function dir(item: any, options?: any): void;
19031+ function dirxml(...data: any[]): void;
19032+ function error(...data: any[]): void;
19033+ function exception(message?: string, ...optionalParams: any[]): void;
19034+ function group(...data: any[]): void;
19035+ function groupCollapsed(...data: any[]): void;
19036+ function groupEnd(): void;
19037+ function info(...data: any[]): void;
19038+ function log(...data: any[]): void;
19039+ function table(tabularData: any, properties?: string[]): void;
19040+ function time(label?: string): void;
19041+ function timeEnd(label?: string): void;
19042+ function timeLog(label?: string, ...data: any[]): void;
19043+ function timeStamp(label?: string): void;
19044+ function trace(...data: any[]): void;
19045+ function warn(...data: any[]): void;
19046+ }
19047+
1906119048declare namespace WebAssembly {
1906219049 interface CompileError {
1906319050 }
@@ -19638,7 +19625,6 @@ declare function toString(): string;
1963819625declare function dispatchEvent(event: Event): boolean;
1963919626declare var sessionStorage: Storage;
1964019627declare var localStorage: Storage;
19641- declare var console: Console;
1964219628/**
1964319629 * Fires when the user aborts the download.
1964419630 * @param ev The event.
0 commit comments