MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 17 lines 578 B view raw
1declare module 'timers' { 2 export const setTimeout: typeof globalThis.setTimeout; 3 export const clearTimeout: typeof globalThis.clearTimeout; 4 export const setInterval: typeof globalThis.setInterval; 5 export const clearInterval: typeof globalThis.clearInterval; 6 export const setImmediate: typeof globalThis.setImmediate; 7 export const clearImmediate: typeof globalThis.clearImmediate; 8 export const queueMicrotask: typeof globalThis.queueMicrotask; 9} 10 11declare module 'ant:timers' { 12 export * from 'timers'; 13} 14 15declare module 'node:timers' { 16 export * from 'timers'; 17}