import { Options } from "./options.js"; //#region src/ops/execute.d.ts /** * Sleeps for the given duration. It is mostly equivalent to setTimeout, but * can be interrupted by the AbortSignal if the signal aborts before the * duration elapses. */ declare function sleep(ms: number, signal?: AbortSignal): Promise; /** Executes operation op with the given options. */ declare function execute(signal: AbortSignal | undefined, op: (signal?: AbortSignal) => Promise, options?: Options): Promise; //#endregion export { execute, sleep }; //# sourceMappingURL=execute.d.ts.map