transform.d.ts 436 B

123456789
  1. import { EncodeComponent as EC } from '../runtime';
  2. import { TransformEncode } from '../spec';
  3. export type TransformOptions = Omit<TransformEncode, 'type'>;
  4. /**
  5. * Extract a column of data with specified map function from data.
  6. * Each datum in the array is not visual data by default.
  7. * Specifying identity scale for related channel explicitly will treat them as visual data.
  8. */
  9. export declare const Transform: EC<TransformOptions>;