/*! * name: async-primitives * version: 1.7.0 * description: A collection of primitive functions for asynchronous operations * author: Kouji Matsui (@kekyo@mi.kekyo.net) * license: MIT * repository.url: https://github.com/kekyo/async-primitives.git * git.commit.hash: 9472fbd5310b92690d84aaafb897429a04c013c5 */ /** * Helper function to create a delay * @param msec - The number of milliseconds to delay * @param signal - Optional AbortSignal to cancel the delay * @returns A promise that resolves after the delay or rejects if aborted */ export declare const delay: (msec: number, signal?: AbortSignal) => Promise; //# sourceMappingURL=delay.d.ts.map