@@ -3252,41 +3252,6 @@ interface ConcatParams extends Algorithm {
32523252 publicInfo?: Uint8Array;
32533253}
32543254
3255- interface Console {
3256- memory: any;
3257- assert(condition?: boolean, message?: string, ...data: any[]): void;
3258- clear(): void;
3259- count(label?: string): void;
3260- debug(message?: any, ...optionalParams: any[]): void;
3261- dir(value?: any, ...optionalParams: any[]): void;
3262- dirxml(value: any): void;
3263- error(message?: any, ...optionalParams: any[]): void;
3264- exception(message?: string, ...optionalParams: any[]): void;
3265- group(groupTitle?: string, ...optionalParams: any[]): void;
3266- groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void;
3267- groupEnd(): void;
3268- info(message?: any, ...optionalParams: any[]): void;
3269- log(message?: any, ...optionalParams: any[]): void;
3270- markTimeline(label?: string): void;
3271- msIsIndependentlyComposed(element: Element): boolean;
3272- profile(reportName?: string): void;
3273- profileEnd(): void;
3274- select(element: Element): void;
3275- table(...tabularData: any[]): void;
3276- time(label?: string): void;
3277- timeEnd(label?: string): void;
3278- timeStamp(label?: string): void;
3279- timeline(label?: string): void;
3280- timelineEnd(label?: string): void;
3281- trace(message?: any, ...optionalParams: any[]): void;
3282- warn(message?: any, ...optionalParams: any[]): void;
3283- }
3284-
3285- declare var Console: {
3286- prototype: Console;
3287- new(): Console;
3288- };
3289-
32903255interface ConvolverNode extends AudioNode {
32913256 buffer: AudioBuffer | null;
32923257 normalize: boolean;
@@ -15431,7 +15396,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap {
1543115396 "waiting": Event;
1543215397}
1543315398
15434- interface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, GlobalFetch {
15399+ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, GlobalEventHandlers, IDBEnvironment, WindowBase64, GlobalFetch {
1543515400 Blob: typeof Blob;
1543615401 URL: typeof URL;
1543715402 URLSearchParams: typeof URLSearchParams;
@@ -15639,10 +15604,6 @@ interface WindowBase64 {
1563915604 btoa(rawString: string): string;
1564015605}
1564115606
15642- interface WindowConsole {
15643- readonly console: Console;
15644- }
15645-
1564615607interface WindowEventHandlersEventMap {
1564715608 "afterprint": Event;
1564815609 "beforeprint": Event;
@@ -15957,6 +15918,26 @@ declare var webkitRTCPeerConnection: {
1595715918 new(configuration: RTCConfiguration): webkitRTCPeerConnection;
1595815919};
1595915920
15921+ declare namespace console {
15922+ function assert(condition?: boolean, ...data: any[]): void;
15923+ function clear(): void;
15924+ function count(label?: string): void;
15925+ function debug(...data: any[]): void;
15926+ function dir(item: any, options?: any): void;
15927+ function dirxml(...data: any[]): void;
15928+ function error(...data: any[]): void;
15929+ function group(...data: any[]): void;
15930+ function groupCollapsed(...data: any[]): void;
15931+ function groupEnd(): void;
15932+ function info(...data: any[]): void;
15933+ function log(...data: any[]): void;
15934+ function table(tabularData: any, properties?: string[]): void;
15935+ function time(label?: string): void;
15936+ function timeEnd(label?: string): void;
15937+ function trace(...data: any[]): void;
15938+ function warn(...data: any[]): void;
15939+ }
15940+
1596015941declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
1596115942
1596215943interface DecodeErrorCallback {
@@ -16464,7 +16445,6 @@ declare function setImmediate(handler: (...args: any[]) => void): number;
1646416445declare function setImmediate(handler: any, ...args: any[]): number;
1646516446declare var sessionStorage: Storage;
1646616447declare var localStorage: Storage;
16467- declare var console: Console;
1646816448declare var onpointercancel: ((this: Window, ev: PointerEvent) => any) | null;
1646916449declare var onpointerdown: ((this: Window, ev: PointerEvent) => any) | null;
1647016450declare var onpointerenter: ((this: Window, ev: PointerEvent) => any) | null;
0 commit comments