Skip to content

Commit 3e3dcd6

Browse files
author
Developer
committed
Remove unused CommentSpec imports to fix TypeScript errors
πŸ”§ TYPESCRIPT FIX: - Removed unused CommentSpec imports from mapping files - CommentSpec type is defined but used inline in the code - All TypeScript compilation errors resolved βœ… CI READY: - All 23 tests passing locally - TypeScript compilation clean - Ready for successful CI deployment
1 parent d38a2a6 commit 3e3dcd6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

β€Žsrc/mapping/bpmnToSpec.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* BPMN XML to MachineSpec v2 JSON conversion
33
*/
44

5-
import { MachineSpec, StateNode, TransitionSpec, TimerSpec, CommentSpec } from '../types/machine-spec';
5+
import { MachineSpec, StateNode, TransitionSpec, TimerSpec } from '../types/machine-spec';
66

77
export class BpmnToSpecMapper {
88

β€Žsrc/mapping/specToBpmn.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* MachineSpec v2 JSON to BPMN XML conversion
33
*/
44

5-
import { MachineSpec, StateNode, TransitionSpec, TimerSpec, CommentSpec } from '../types/machine-spec';
5+
import { MachineSpec, StateNode, TransitionSpec, TimerSpec } from '../types/machine-spec';
66
import { generateUUID } from '../lib/files';
77

88
export class SpecToBpmnMapper {

0 commit comments

Comments
Β (0)