mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 17:33:09 +02:00
c03e2dfbc0
* Change naming * x to a
5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
export type Predicate<T> = (a: T) => boolean;
|
|
|
|
export type Relation<T, U> = (a: T, b: U) => boolean;
|
|
|
|
export type EndoRelation<T> = Relation<T, T>;
|