UNPKG

jsmodern

Version:

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

11 lines 282 B
import type { PrototypeStruct } from '../index.js'; interface IsSubset<T> { isSubset(other: Set<T>): boolean; } export declare const isSubset: PrototypeStruct; declare global { interface Set<T> extends IsSubset<T> { } } export {}; //# sourceMappingURL=is-subset.d.ts.map