groupY.d.ts 277 B

1234567
  1. import { TransformComponent as TC } from '../runtime';
  2. import { GroupYTransform } from '../spec';
  3. export type GroupYOptions = Omit<GroupYTransform, 'type'>;
  4. /**
  5. * The GroupY transform group data by x channel, and aggregate.
  6. */
  7. export declare const GroupY: TC<GroupYOptions>;