feat(commands): add image asset layer commands

This commit is contained in:
syntaxbullet
2026-07-03 16:18:40 +02:00
parent 97c3d3b7ae
commit 75466d2aa6
5 changed files with 110 additions and 5 deletions

View File

@@ -1,6 +1,17 @@
export type { Command, CommandContext } from "./command";
export { documentAddArtboardCommand, documentCommands } from "./document";
export type { DocumentAddArtboardPayload } from "./document";
export {
documentAddArtboardCommand,
documentAddAssetCommand,
documentAddImageLayerCommand,
documentCommands,
documentSetArtboardBoundsCommand,
} from "./document";
export type {
DocumentAddArtboardPayload,
DocumentAddAssetPayload,
DocumentAddImageLayerPayload,
DocumentSetArtboardBoundsPayload,
} from "./document";
export type { CommandDispatcher, Dispatch } from "./dispatcher";
export type { CommandId, CommandPayloads } from "./payloads";
export { createCommandDispatcher } from "./dispatcher";