vector.d.ts 301 B

12345678
  1. import { MarkComponent as MC } from '../runtime';
  2. import { VectorMark } from '../spec';
  3. export type VectorOptions = Omit<VectorMark, 'type'>;
  4. /**
  5. * Convert value for each channel to start, end.
  6. * The angle starts from the X axis(right direction).
  7. */
  8. export declare const Vector: MC<VectorOptions>;