Skip to content

Commit

Permalink
Use defined type as input to Entity
Browse files Browse the repository at this point in the history
  • Loading branch information
darunrs committed Jul 18, 2024
1 parent 0cf33da commit 29b2748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/src/dml-handler/in-memory-dml-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PostgresRowEntity {
data: PostgresRow;
private readonly primaryKeys: string[];

constructor (data: any, primaryKeys: string[]) {
constructor (data: PostgresRow, primaryKeys: string[]) {
this.data = data;
this.primaryKeys = primaryKeys.sort();

Expand Down

0 comments on commit 29b2748

Please sign in to comment.