mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 21:43:09 +02:00
4 lines
101 B
TypeScript
4 lines
101 B
TypeScript
|
export type Relation<T, U> = (x: T, y: U) => boolean;
|
||
|
|
||
|
export type EndoRelation<T> = Relation<T, T>;
|