JamieMason/expect-more

View on GitHub
packages/expect-more/src/typings.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type AnyFn = (...args: any[]) => any;
export type Collection = any[] | Record<any, any>;
export type Reducer = (memo: any, value: any, key: number | string, collection: Collection) => any;
export type UnaryBoolFn = (value: any) => boolean;
export type VoidFn = () => void;