blob: fba8e7295b37199e1069cd8a49d1e6e712aad69d [file] [log] [blame]
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;