UNPKG

@plurid/plurid-functions

Version:
12 lines (11 loc) 275 B
declare const now: () => number; declare const stamp: () => string; /** * Delay the program flow for `value` time, in milliseconds. * * Default: `500` * * @param value */ declare const delay: (value?: number) => Promise<void>; export { now, stamp, delay, };