You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
424 B
14 lines
424 B
declare global {
|
|
class Set<T> {
|
|
constructor(items?: T[]);
|
|
add(value: T): this;
|
|
clear(): void;
|
|
delete(value: T): boolean;
|
|
forEach(callbackfn: (value: T, value2: T, set: Set<T>) => void, thisArg?: unknown): void;
|
|
has(value: T): boolean;
|
|
readonly size: number;
|
|
}
|
|
}
|
|
declare const _default: typeof Set;
|
|
export default _default;
|
|
//# sourceMappingURL=SetLike.d.ts.map
|