Skip to content

Commit

Permalink
Merge pull request #270 from seatsurfing/fix-implicit-any
Browse files Browse the repository at this point in the history
Fix implicit any error
  • Loading branch information
virtualzone authored Aug 30, 2024
2 parents a1dfb6d + 103045e commit 48ab2b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions commons/ts/src/types/BulkUpdateResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ export default class BulkUpdateResponse {

deserialize(input: any): void {
if (input.creates) {
this.creates = input.creates.map(e => new BulkUpdateItem().deserialize(e))
this.creates = input.creates.map((e: any) => new BulkUpdateItem().deserialize(e))
}
if (input.updates) {
this.updates = input.updates.map(e => new BulkUpdateItem().deserialize(e))
this.updates = input.updates.map((e: any) => new BulkUpdateItem().deserialize(e))
}
if (input.deletes) {
this.deletes = input.deletes.map(e => new BulkUpdateItem().deserialize(e))
this.deletes = input.deletes.map((e: any) => new BulkUpdateItem().deserialize(e))
}
}
}

0 comments on commit 48ab2b6

Please sign in to comment.