mirror of
https://github.com/paricafe/misskey.git
synced 2025-02-16 18:57:28 -06: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>;
|