File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export interface RoleAttributes {
13
13
14
14
interface RoleCreationAttributes extends Optional < RoleAttributes , 'id' > { }
15
15
16
- interface RoleInstance
16
+ export interface RoleInstance
17
17
extends Model < RoleAttributes , RoleCreationAttributes > ,
18
18
RoleAttributes { }
19
19
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export interface EmailAttributes {
36
36
37
37
interface UserCreationAttributes extends Optional < UserAttributes , 'id' > { }
38
38
39
- interface UserInstance
39
+ export interface UserInstance
40
40
extends Model < UserAttributes , UserCreationAttributes > ,
41
41
UserAttributes {
42
42
comparePassword ( ) : boolean | void
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export interface UserRoleAttributes {
15
15
interface UserRoleCreationAttributes
16
16
extends Optional < UserRoleAttributes , 'id' > { }
17
17
18
- interface UserRoleInstance
18
+ export interface UserRoleInstance
19
19
extends Model < UserRoleAttributes , UserRoleCreationAttributes > ,
20
20
UserRoleAttributes { }
21
21
You can’t perform that action at this time.
0 commit comments