/*! * 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 { AsyncOperator, AsyncOperatorSource } from '../types.js'; /** * Creates a chainable async operator pipeline from an iterable of values or promise-like values * @param source - Source iterable to resolve * @returns A lazy async operator pipeline */ export declare const from: (source: AsyncOperatorSource) => AsyncOperator; //# sourceMappingURL=async-operator.d.ts.map