work.suroh.tk/node_modules/rxjs/util/Set.d.ts

12 lines
264 B
TypeScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
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;