medsurf-draw
Version:
Draw annotations on jpg/zoomify images, based on PIXI.js
6 lines (5 loc) • 324 B
TypeScript
import { ArrowPrimitive } from "./ArrowPrimitive";
import { EllipsePrimitive } from "./EllipsePrimitive";
import { RectanglePrimitive } from "./RectanglePrimitive";
import { TextPrimitive } from "./TextPrimitive";
export declare type PrimitiveObject = ArrowPrimitive | EllipsePrimitive | RectanglePrimitive | TextPrimitive;