UNPKG

jsmodern

Version:

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

11 lines 281 B
import type { PrototypeStruct } from '../index.js'; interface Chunks<T> { chunks(chunkSize: number): T[] | T[][]; } export declare const chunks: PrototypeStruct; declare global { interface Array<T> extends Chunks<T> { } } export {}; //# sourceMappingURL=chunks.d.ts.map