Skip to content

Commit f77034b

Browse files
committed
chore(types): add readonly DataCondition type
1 parent 7c3ca30 commit f77034b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

static/app/types/workflowEngine/dataConditions.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ export interface NewDataCondition {
7070
condition_result?: any;
7171
}
7272

73+
export interface DataCondition extends Readonly<NewDataCondition> {
74+
readonly id: string;
75+
}
76+
7377
export interface DataConditionGroup {
7478
conditions: NewDataCondition[];
7579
id: string;

0 commit comments

Comments
 (0)