mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-27 04:17:51 -07:00
14148f6c4a
Resolve #7779
5 lines
148 B
TypeScript
5 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>;
|