UNPKG

jsmodern

Version:

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

11 lines 251 B
import type { PrototypeStruct } from '../index.js'; interface Max<T> { max(): T | undefined; } export declare const max: PrototypeStruct; declare global { interface Array<T> extends Max<T> { } } export {}; //# sourceMappingURL=max.d.ts.map