UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

14 lines (13 loc) 868 B
export * from './builders/types.mjs'; export * from './builders/lib.mjs'; export { default as StrokeSmoother } from './util/StrokeSmoother.mjs'; export * from './AbstractComponent.mjs'; export { default as AbstractComponent } from './AbstractComponent.mjs'; import Stroke from './Stroke.mjs'; import TextComponent from './TextComponent.mjs'; import ImageComponent from './ImageComponent.mjs'; import { createRestyleComponentCommand, isRestylableComponent, } from './RestylableComponent.mjs'; import BackgroundComponent, { BackgroundType } from './BackgroundComponent.mjs'; export { Stroke, createRestyleComponentCommand, isRestylableComponent, TextComponent, /** @deprecated use {@link TextComponent} */ TextComponent as Text, Stroke as StrokeComponent, BackgroundComponent, BackgroundType as BackgroundComponentBackgroundType, ImageComponent, };