34 lines
816 B
TypeScript
34 lines
816 B
TypeScript
|
export { ActionManager } from "./manager";
|
||
|
export { actionDeleteSelected } from "./actionDeleteSelected";
|
||
|
export {
|
||
|
actionBringForward,
|
||
|
actionBringToFront,
|
||
|
actionSendBackward,
|
||
|
actionSendToBack
|
||
|
} from "./actionZindex";
|
||
|
export { actionSelectAll } from "./actionSelectAll";
|
||
|
export {
|
||
|
actionChangeStrokeColor,
|
||
|
actionChangeBackgroundColor,
|
||
|
actionChangeStrokeWidth,
|
||
|
actionChangeFillStyle,
|
||
|
actionChangeSloppiness,
|
||
|
actionChangeOpacity,
|
||
|
actionChangeFontSize,
|
||
|
actionChangeFontFamily
|
||
|
} from "./actionProperties";
|
||
|
|
||
|
export {
|
||
|
actionChangeViewBackgroundColor,
|
||
|
actionClearCanvas
|
||
|
} from "./actionCanvas";
|
||
|
|
||
|
export {
|
||
|
actionChangeProjectName,
|
||
|
actionChangeExportBackground,
|
||
|
actionSaveScene,
|
||
|
actionLoadScene
|
||
|
} from "./actionExport";
|
||
|
|
||
|
export { actionCopyStyles, actionPasteStyles } from "./actionStyles";
|