UNPKG

declarative-js

Version:

_declarative-js_ is modern JavaScript library, that helps to: - tackle array transformation with built in JavaScript array api (e.g. `array.filter(toBe.unique())`), - provide a type-level solution for representing optional values instead of null referen

11 lines (10 loc) 259 B
export declare namespace Mapper { /** * returns object values * @param obj object * @see https://pavel-surinin.github.io/declarativejs/#/?id=toobjvalues */ const toObjValues: <T>(obj: { [keyof: string]: T; }) => T[]; }