UNPKG

269 BTypeScriptView Raw
1/**
2A `setImmediate` shim.
3
4If the environment supports `setImmediate`, it uses that; otherwise, it falls back to `setTimeout` with a 0ms delay.
5*/
6export default function setImmediate<T extends any[]>(
7 callback: (...arguments_: T) => void,
8 ...arguments_: T
9): void;