@codibre/fluent-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
11 lines (10 loc) • 447 B
TypeScript
import { orderAssured } from './types-internal';
export declare class FluentAsyncClass {
private base;
constructor(base: any);
[Symbol.asyncIterator](): any;
get [orderAssured](): number | undefined;
set [orderAssured](value: number | undefined);
}
export declare function addAsyncFluentMethod(method: string, body: Function): void;
export declare const addAsyncFluentResolvingMethod: (method: string, body: Function) => void;