map-transform-cjs
Version:
MapTransform with CJS support
9 lines (6 loc) • 370 B
text/typescript
import { TransformerProps, TransformDefinition, AsyncTransformer, DataMapperWithOptions, AsyncDataMapperWithOptions } from '../types.cjs';
interface Props extends TransformerProps {
path?: TransformDefinition;
}
declare const transformer: AsyncTransformer<Props | DataMapperWithOptions | AsyncDataMapperWithOptions>;
export { type Props, transformer as default };