mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 04:59:06 +01:00
14148f6c4a
Resolve #7779
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
export type Predicate<T> = (a: T) => boolean;
|
|
|
|
export type Relation<T, U> = (a: T, b: U) => boolean;
|
|
|
|
export type EndoRelation<T> = Relation<T, T>;
|