groupX.d.ts 277 B

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