UNPKG

jsmodern

Version:

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

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