/** * @since 2.0.0 */ import type { NonEmptyReadonlyArray } from "./Array.ts"; import * as Exit from "./Exit.ts"; import type * as Pull from "./Pull.ts"; /** * @since 2.0.0 * @category Models */ export type Take = NonEmptyReadonlyArray | Exit.Exit; /** * @since 4.0.0 * @category Conversions */ export declare const toPull: (take: Take) => Pull.Pull, E, Done>; //# sourceMappingURL=Take.d.ts.map