anki/ts/image-occlusion/shapes/index.ts

11 lines
417 B
TypeScript
Raw Normal View History

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
export type { ShapeOrShapes } from "./base";
export { Shape } from "./base";
export { Ellipse } from "./ellipse";
export { extractShapesFromRenderedClozes } from "./from-cloze";
export { Polygon } from "./polygon";
export { Rectangle } from "./rectangle";
export { Text } from "./text";