Files
pezkuwi-common/packages/util/nextTick.d.ts
T

6 lines
207 B
TypeScript

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