bpms_site/.svn/pristine/5e/5e925d62ad71b381740f657e300af4e232c70605.svn-base
2025-11-02 16:38:49 +03:30

8 lines
256 B
Plaintext

type ScheduledFn<T = void> = () => T | PromiseLike<T>;
/**
* Schedules a function to be called on the next tick after the other promises
* have been resolved.
*/
export declare function scheduleOnNextTick<T = void>(cb: ScheduledFn<T>): void;
export {};