UNPKG

207 BTypeScriptView Raw
1/**
2 * @name nextTick
3 * @description Defer the operation to the queue for evaluation on the next tick
4 */
5export declare function nextTick(onExec: () => unknown, onError?: (error: Error) => unknown): void;