link.d.ts 234 B

1234567
  1. import { MarkComponent as MC } from '../runtime';
  2. import { LineMark } from '../spec';
  3. export type LinkOptions = Omit<LineMark, 'type'>;
  4. /**
  5. * Connect `start` to `end` with single line.
  6. */
  7. export declare const Link: MC<LinkOptions>;