UNPKG

map-transform

Version:

Map and transform objects with mapping definitions

8 lines (7 loc) 263 B
import type { Dictionary, TransformerProps, Transformer } from '../types.js'; export interface Props extends TransformerProps { dictionary?: Dictionary | string; flip?: boolean; } declare const transformer: Transformer<Props>; export default transformer;