UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

7 lines (6 loc) 168 B
import { Collection } from "./Collection"; export interface JSet<E = any> extends Collection<E> { isEmpty(): boolean; add(item: E): void; size(): number; }