ts-generic-collections-linq
Version:
TypeScript library provides strongly-typed, queryable collections.
10 lines (9 loc) • 383 B
TypeScript
import { IEnumerable, IGroup } from './interfaces';
export declare class Group<T> implements IGroup<T> {
groups: any[];
list: IEnumerable<T>;
constructor(groups: any[], list: Array<T>);
}
export declare var objCompare: (obj1: any, obj2: any) => boolean;
export declare const ITEM_NOT_FOUND_MSG: string;
export declare const MULTIPLE_INSTANCES_FOUND_MSG: string;