sync
This commit is contained in:
@@ -6,7 +6,7 @@ export type AnyPredicate<T> = (obj: T) => unknown;
|
||||
export type FilterPredicate<TElement, TFiltered extends TElement> = (obj: TElement) => obj is TFiltered;
|
||||
export type Converter<TFrom, TTo> = (obj: TFrom) => TTo;
|
||||
export type BiConverter<TFromFirst, TFromSecond, TTo> = (first: TFromFirst, second: TFromSecond) => TTo;
|
||||
export type Action<T> = (obj: T) => void;
|
||||
export type Action<T> = (obj: T) => unknown;
|
||||
export type Accumulator<TElement, TAccumulator> = (acc: TAccumulator, obj: TElement) => TAccumulator;
|
||||
export type Comparer<T> = (first: T, second: T) => number;
|
||||
export type Equater<T> = (first: T, second: T) => boolean;
|
||||
|
||||
Reference in New Issue
Block a user