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