File tree 3 files changed +17
-10
lines changed
3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 1
1
declare type ClientType = {
2
2
id : string ;
3
3
name : string ;
4
+ email : string ;
5
+ address : string ;
6
+ note : string ;
4
7
workspaceId : string ;
5
8
archived : boolean ;
6
9
} ;
7
- export { ClientType , } ;
10
+ export { ClientType } ;
Original file line number Diff line number Diff line change 1
1
declare type ClientType = {
2
2
id : string ;
3
3
name : string ;
4
+ email : string ;
5
+ address : string ;
6
+ note : string ;
4
7
workspaceId : string ;
5
8
archived : boolean ;
6
9
} ;
7
- export { ClientType , } ;
10
+ export { ClientType } ;
Original file line number Diff line number Diff line change 1
1
type ClientType = {
2
- id : string ,
3
- name : string ,
4
- workspaceId : string ,
5
- archived : boolean ,
6
- }
7
- export {
8
- ClientType ,
9
- }
2
+ id : string ;
3
+ name : string ;
4
+ email : string ;
5
+ address : string ;
6
+ note : string ;
7
+ workspaceId : string ;
8
+ archived : boolean ;
9
+ } ;
10
+ export { ClientType } ;
You can’t perform that action at this time.
0 commit comments