mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-03-05 11:19:05 +01: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>;
|