(task: Function)
| 346 | setInterval(callback: (...args: any[]) => void, msDelay?: number): number; |
| 347 | setInterval<Args extends any[]>(callback: (...args: Args) => void, msDelay?: number, ...args: Args): number; |
| 348 | clearInterval(timeoutId: number | null): void; |
| 349 | queueMicrotask(task: Function): void; |
| 350 | structuredClone<T>(value: T, options?: StructuredSerializeOptions): T; |
| 351 | reportError(error: any): void; |
nothing calls this directly
no outgoing calls
no test coverage detected