UNPKG

projen

Version:

CDK for software projects

14 lines (13 loc) 467 B
export declare class EmptySet<T> implements Set<T> { get size(): number; add(value: T): this; clear(): void; delete(value: T): boolean; forEach(callbackfn: (value: T, value2: T, set: Set<T>) => void, thisArg?: any): void; has(value: T): boolean; [Symbol.iterator](): IterableIterator<T>; entries(): IterableIterator<[T, T]>; keys(): IterableIterator<T>; values(): IterableIterator<T>; get [Symbol.toStringTag](): string; }