UNPKG

jsmodern

Version:

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

9 lines 239 B
import { PrototypeStruct } from '..'; export declare type MaxFn<T> = () => T | undefined; export declare const max: PrototypeStruct; declare global { interface Array<T> { max: MaxFn<T>; } } //# sourceMappingURL=max.d.ts.map