UNPKG

map-transform

Version:

Map and transform objects with mapping definitions

7 lines (6 loc) 360 B
import type { TransformDefinition, DataMapperWithOptions, AsyncDataMapperWithOptions, AsyncTransformer, TransformerProps } from '../types.js'; export interface Props extends TransformerProps { path?: TransformDefinition; } declare const transformer: AsyncTransformer<Props | DataMapperWithOptions | AsyncDataMapperWithOptions>; export default transformer;