UNPKG

@fourlights/mapper

Version:

A simple data mapper written in typescript

6 lines (3 loc) 196 B
import { MapperConfig, MapperOptions } from './types.js'; declare function map<T>(data: T, config: MapperConfig<T>, options?: MapperOptions): Record<keyof MapperConfig<T>, any>; export { map };