MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
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}