您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  1. export interface ISetCtor {
  2. new <T>(): ISet<T>;
  3. }
  4. export interface ISet<T> {
  5. add(value: T): void;
  6. has(value: T): boolean;
  7. size: number;
  8. clear(): void;
  9. }
  10. export declare function minimalSetImpl<T>(): ISetCtor;
  11. export declare const Set: ISetCtor;