@ablestack/rdo
Version:
A library to facilitate building and running graphs of Reactive Domain Objects - connecting JSON data sources to reactive client applications
17 lines (16 loc) • 428 B
TypeScript
declare function isIterable(obj: any): boolean;
export declare const CollectionUtils: {
Array: {
clear: <T>({ collection }: {
collection: T[];
}) => boolean;
};
Record: {
deleteElement: <T_1>({ record, key }: {
record: Record<string, T_1>;
key: string;
}) => T_1 | undefined;
};
isIterable: typeof isIterable;
};
export {};