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