UNPKG

375 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { JitterYTransform } from '../spec';
3export type JitterYOptions = Omit<JitterYTransform, 'type'>;
4/**
5 * The JitterY 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 JitterY: TC<JitterYOptions>;