UNPKG

jsmodern

Version:

An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.

11 lines 262 B
import type { PrototypeStruct } from '../index.js'; interface Union<T> { union(other: Set<T>): T[]; } export declare const union: PrototypeStruct; declare global { interface Set<T> extends Union<T> { } } export {}; //# sourceMappingURL=union.d.ts.map