Set.d.ts 264 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 export interface ISetCtor { new <T>(): ISet<T>; } export interface ISet<T> { add(value: T): void; has(value: T): boolean; size: number; clear(): void; } export declare function minimalSetImpl<T>(): ISetCtor; export declare const Set: ISetCtor;