import { AnyIterable } from 'augmentative-iterable'; /** * An operation that returns an Iterable */ export type IterableOperation = (this: Iterable, ...args: any[]) => Iterable; /** * An operation that returns an AsyncIterable */ export type IterableOperationAsync = (this: Iterable, ...args: any[]) => AsyncIterable | PromiseLike>; /** * A resolving operation */ export type IterableResolvingOperation = (this: Iterable, ...args: any[]) => any; /** * Used to add custom methods for the next fluent async iterables created * Is recommendable to also declare the method in the interface so it can be visible to typescript, like this: * ```ts * declare module '@codibre/fluent-iterable'{ * interface FluentIterable { * myCustomMethod(myParams: someType): FluentIterable * } * } * ``` */ export declare const extend: { /** * Add a method that returns another FluentAsyncIterable * @param name The name of the method * @param operation The operation to be made */ use(name: string, operation: IterableOperation): void; /** * Add a method that returns another FluentAsyncIterable * @param name The name of the method * @param operation The operation to be made */ useAsync(name: string, operation: IterableOperationAsync): void; /** * Add a resolving method * @param name The name of the method * @param operation The resolving operation to be made */ useResolving(name: string, operation: IterableResolvingOperation): void; };