UNPKG

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