mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 17:06:43 -06:00
3 lines
101 B
TypeScript
3 lines
101 B
TypeScript
export type Relation<T, U> = (x: T, y: U) => boolean;
|
|
|
|
export type EndoRelation<T> = Relation<T, T>;
|