map.d.ts 223 B

1234567
  1. import { DataComponent as DC } from '../runtime';
  2. import { MapTransform } from '../spec';
  3. export type MapOptions = Omit<MapTransform, 'type'>;
  4. /**
  5. * Map transform by function.
  6. */
  7. export declare const Map: DC<MapOptions>;