UNPKG

375 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { JitterXTransform } from '../spec';
3export type JitterXOptions = Omit<JitterXTransform, 'type'>;
4/**
5 * The JitterX transform produce dy channels for marks (especially for point)
6 * with ordinal x and y dimension, say to make them jitter in their own space.
7 */
8export declare const JitterX: TC<JitterXOptions>;