@@ -16670,8 +16670,8 @@ interface WindowOrWorkerGlobalScope {
1667016670 readonly performance: Performance;
1667116671 atob(data: string): string;
1667216672 btoa(data: string): string;
16673- clearInterval(id? : number): void;
16674- clearTimeout(id? : number): void;
16673+ clearInterval(id: number | undefined ): void;
16674+ clearTimeout(id: number | undefined ): void;
1667516675 createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
1667616676 createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
1667716677 fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
@@ -17978,8 +17978,8 @@ declare var origin: string;
1797817978declare var performance: Performance;
1797917979declare function atob(data: string): string;
1798017980declare function btoa(data: string): string;
17981- declare function clearInterval(id? : number): void;
17982- declare function clearTimeout(id? : number): void;
17981+ declare function clearInterval(id: number | undefined ): void;
17982+ declare function clearTimeout(id: number | undefined ): void;
1798317983declare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
1798417984declare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
1798517985declare function fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
0 commit comments