6 lines
136 B
TypeScript
6 lines
136 B
TypeScript
/**
|
|
* @packageDocumentation
|
|
* @module std.internal
|
|
*/
|
|
export declare type BinaryPredicator<X, Y = X> = (x: X, y: Y) => boolean;
|