UNPKG

jsmodern

Version:

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

11 lines 283 B
import type { PrototypeStruct } from '../index.js'; interface SplitAt<T> { splitAt(valueToFind: T): [T[], T[]]; } export declare const splitAt: PrototypeStruct; declare global { interface Array<T> extends SplitAt<T> { } } export {}; //# sourceMappingURL=split-at.d.ts.map