/*! * 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 */ import { Deferred } from '../types.js'; /** * Creates a new deferred object * @param T - The type of the result * @param signal - Optional AbortSignal for cancelling the wait * @returns A deferred object with a promise, resolve, and reject methods */ export declare const createDeferred: (signal?: AbortSignal) => Deferred; //# sourceMappingURL=deferred.d.ts.map