UNPKG

@webwriter/geometry-cloze

Version:

Create and view geometry exercises with coloring, styling and labeling options.

13 lines (11 loc) 297 B
import { Child } from './ChildrenTypes'; export default interface Manager { getChildren(): Child[]; addChild(ele: Child): void; removeChild(ele: Child): void; export(): any; import(data: any): void; mode: InteractionMode; scale: number; abstractRightAngle: boolean; }