8 lines
374 B
TypeScript
8 lines
374 B
TypeScript
import { SetIntervalAsyncTimer } from "./set-interval-async-timer.cjs";
|
|
/**
|
|
* Stops an execution cycle started by setIntervalAsync.
|
|
* Any ongoing function executions will run until completion,
|
|
* but all future ones will be cancelled.
|
|
*/
|
|
export declare function clearIntervalAsync<HandlerArgs extends unknown[]>(timer: SetIntervalAsyncTimer<HandlerArgs>): Promise<void>;
|