/** * @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;