6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
/**
|
|
* @packageDocumentation
|
|
* @module std.internal
|
|
*/
|
|
export declare type UnaryPredicator<T> = (val: T) => boolean;
|