tldraw/state/commands/index.ts

16 lines
315 B
TypeScript
Raw Normal View History

2021-05-15 13:02:13 +00:00
import translate from "./translate"
import transform from "./transform"
import generateShapes from "./generate-shapes"
2021-05-15 14:10:11 +00:00
import createShape from "./create-shape"
2021-05-15 15:20:21 +00:00
import direction from "./direction"
2021-05-13 06:44:52 +00:00
2021-05-15 15:20:21 +00:00
const commands = {
translate,
transform,
generateShapes,
createShape,
direction,
}
2021-05-13 06:44:52 +00:00
export default commands