UNPKG

map-transform-cjs

Version:
11 lines (8 loc) 314 B
import { TransformerProps, Path, AsyncTransformer } from '../types.js'; type Operator = 'AND' | 'OR'; interface Props extends TransformerProps { path?: Path | Path[]; operator?: Operator; } declare const transformer: AsyncTransformer<Props>; export { type Operator, type Props, transformer as default };