jitterX.d.ts 375 B

12345678
  1. import { TransformComponent as TC } from '../runtime';
  2. import { JitterXTransform } from '../spec';
  3. export 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. */
  8. export declare const JitterX: TC<JitterXOptions>;