mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-21 23:48:05 +00:00
6 lines
207 B
TypeScript
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;
|