UNPKG

@typescript-package/data

Version:

A lightweight TypeScript library for basic data management.

11 lines (10 loc) 238 B
/** * @description * @export * @interface SetTypeConstructor * @template Type * @template {Set<Type>} SetType */ export interface SetTypeConstructor<Type, SetType extends Set<Type>> { new (iterable?: Iterable<Type>): SetType; }