UNPKG

397 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { SelectTransform } from '../spec';
3export 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 */
9export declare const Select: TC<SelectOptions>;