select.d.ts 397 B

123456789
  1. import { TransformComponent as TC } from '../runtime';
  2. import { SelectTransform } from '../spec';
  3. export type SelectOptions = Omit<SelectTransform, 'type'>;
  4. /**
  5. * The select transform groups marks with specified channels, and
  6. * filter index by specified selector for each series, say to
  7. * pull a single or multiple values out of each series.
  8. */
  9. export declare const Select: TC<SelectOptions>;