mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-19 17:18:12 +09: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>;
|