workflow-commands.ts 308 B

1234567891011121314
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. export enum WorkflowCommands {
  6. DELETE_NODES = 'DELETE_NODES',
  7. COPY_NODES = 'COPY_NODES',
  8. PASTE_NODES = 'PASTE_NODES',
  9. ZOOM_IN = 'ZOOM_IN',
  10. ZOOM_OUT = 'ZOOM_OUT',
  11. UNDO = 'UNDO',
  12. REDO = 'REDO',
  13. }