parallel.d.ts 290 B

1234567
  1. import { CoordinateComponent as CC } from '../runtime';
  2. import { ParallelCoordinate } from '../spec';
  3. export type ParallelOptions = Omit<ParallelCoordinate, 'type'>;
  4. /**
  5. * Parallel coordinate transformations for parallel coordinate.
  6. */
  7. export declare const Parallel: CC<ParallelOptions>;