Skip to content

Commit

Permalink
fix(extension): fix types error when run build:types
Browse files Browse the repository at this point in the history
  • Loading branch information
wumail committed Aug 3, 2023
1 parent bd3e76a commit f3aaf91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/extension/src/bpmn-elements-adapter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ function convertBpmn2LfData(bpmnData: any, other?: ExtraPropsType) {
} else {
func(obj[key]);
}
let keys: (string | symbol)[];
let keys: any[];
if ((keys = Reflect.ownKeys(props)).length > 0) {
keys.forEach((key) => {
Reflect.set(obj, key, props[key]);
Expand Down

0 comments on commit f3aaf91

Please sign in to comment.