Files
Ceras/themes/ceras/node_modules/rxjs/util/Set.d.ts
T
2023-07-12 16:31:19 +01:00

12 lines
264 B
TypeScript
Executable File

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;