UNPKG

@thoshpathi/utils-core

Version:

A collection of core utility functions for data processing

12 lines (10 loc) 259 B
declare class SetInterval { #private; start({ func, ms }: { func: () => unknown; ms: number; }): void; stop(): void; } declare function delay(ms?: number): Promise<void>; export { SetInterval, SetInterval as default, delay };