interval.d.ts 361 B

123456789101112
  1. import { MarkComponent as MC } from '../runtime';
  2. import { IntervalMark } from '../spec';
  3. export type IntervalOptions = Omit<IntervalMark, 'type'>;
  4. /**
  5. * Convert value for each channel to rect shapes.
  6. * p0 p1
  7. * ┌────┐
  8. * │ │
  9. * │ │
  10. * p3 └────┘ p2
  11. */
  12. export declare const Interval: MC<IntervalOptions>;