fix: method hasType in service errors.

This commit is contained in:
Ahmed Bouhuolia
2020-09-26 16:46:05 +02:00
parent 933afb37bf
commit 9f315ca657
5 changed files with 15 additions and 5 deletions

View File

@@ -1,10 +1,16 @@
export interface IRegisterDTO {
firstName: string,
lastName: string,
email: string,
password: string,
organizationName: string,
};
export interface IPasswordReset {
id: number,
email: string,
token: string,
createdAt: Date,
};