Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
fix: ⚡ Fixed typing error
Browse files Browse the repository at this point in the history
Postgress typing error fix for customer model
  • Loading branch information
Tolfx committed Mar 7, 2022
1 parent e5a49fc commit 3ba22b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Database/Postgres/Models/Customer/Customer.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export class CustomerModel extends Model<ICustomer, Optional<ICustomer, "id">> i
};
declare password: string;
declare profile_picture: IImage["id"] | null;
declare currency: string | ICustomer["currency"];
declare extra: {
[key: string]: any;
};
Expand Down

0 comments on commit 3ba22b5

Please sign in to comment.