line.d.ts 238 B

1234567
  1. import { MarkComponent as MC } from '../runtime';
  2. import { LineMark } from '../spec';
  3. export type LineOptions = Omit<LineMark, 'type'>;
  4. /**
  5. * Convert value for each channel to line shapes.
  6. */
  7. export declare const Line: MC<LineOptions>;