diff --git a/frontend/src/types/tree.ts b/frontend/src/types/tree.ts index 916c43e8..c4595b1a 100644 --- a/frontend/src/types/tree.ts +++ b/frontend/src/types/tree.ts @@ -123,6 +123,18 @@ export interface ProceduralStep { reference_url?: string } +export interface CustomProceduralStep { + id: string + type: 'procedure_step' + title: string + description?: string + content_type: 'action' + commands?: CommandBlock[] + isCustom: true +} + +export type RuntimeStep = ProceduralStep | CustomProceduralStep + export interface ProceduralTreeStructure { steps: ProceduralStep[] }