jsmodern
Version:
An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.
11 lines • 324 B
TypeScript
import { PrototypeStruct } from '..';
declare type AllPredicate<T> = (value: T) => boolean;
export declare type AllFn<T> = (predicate: AllPredicate<T>) => boolean;
export declare const all: PrototypeStruct;
declare global {
interface Array<T> {
all: AllFn<T>;
}
}
export {};
//# sourceMappingURL=all.d.ts.map