normalizeY.d.ts 401 B

123456789
  1. import { TransformComponent as TC } from '../runtime';
  2. import { NormalizeYTransform } from '../spec';
  3. export type NormalizeYOptions = Omit<NormalizeYTransform, 'type'>;
  4. /**
  5. * Group marks into series by specified channels, and then transform
  6. * each series's value, say to transform them relative to some basis
  7. * to apply a moving average.
  8. */
  9. export declare const NormalizeY: TC<NormalizeYOptions>;