Skip to content

Commit

Permalink
Fix ts errors in engine-builder.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dumganhar committed Aug 12, 2024
1 parent bfe8b1b commit e7e6c86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/build-engine/src/engine-ts/engine-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -476,8 +476,8 @@ export class EngineBuilder {
[
t.identifier(decName),
(propertyValuePath.node ?
t.arrowFunctionExpression([], propertyValuePath.node) :
t.nullLiteral()),
t.arrowFunctionExpression([], propertyValuePath.node) :
t.nullLiteral()),
...args
]
)));
Expand All @@ -488,8 +488,8 @@ export class EngineBuilder {
[
t.identifier(decName),
(propertyValuePath.node ?
t.arrowFunctionExpression([], propertyValuePath.node) :
t.nullLiteral())
t.arrowFunctionExpression([], propertyValuePath.node) :
t.nullLiteral())
]
)));
}
Expand Down

0 comments on commit e7e6c86

Please sign in to comment.