shape.d.ts 236 B

1234567
  1. import { MarkComponent as MC } from '../runtime';
  2. import { ShapeMark } from '../spec';
  3. export type ShapeOptions = Omit<ShapeMark, 'type'>;
  4. /**
  5. * @todo Unify with text, image and point.
  6. */
  7. export declare const Shape: MC<ShapeOptions>;