UNPKG

@jupyterlab/coreutils

Version:
6 lines (5 loc) 237 B
/** * Return a promise that resolves in the given milliseconds with the given value. */ export declare function sleep(milliseconds?: number): Promise<void>; export declare function sleep<T>(milliseconds: number, value: T): Promise<T>;