Codibre/fluent-iterable

View on GitHub
src/types/any-mapper.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type FunctionAnyMapper<T> = (value: T) => any;
export type AnyMapper<T> = FunctionAnyMapper<T> | keyof T;