/*! * 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 { ManuallyConditional, Conditional } from '../types.js'; /** * Creates a conditional that can be automatically triggered * @returns A conditional that can be automatically triggered */ export declare const createConditional: () => Conditional; /** * Creates a conditional that can be manually set and reset * @param initialState - Optional initial state of the conditional (Default: false, dropped) * @returns A conditional that can be manually set and reset */ export declare const createManuallyConditional: (initialState?: boolean) => ManuallyConditional; //# sourceMappingURL=conditional.d.ts.map