update interfaces
This commit is contained in:
parent
48e6e7b2d1
commit
f8240e1004
2 changed files with 6 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
export interface Task {
|
export interface Task {
|
||||||
id?: string;
|
id: string;
|
||||||
title: string;
|
title: string;
|
||||||
description: string;
|
description: string;
|
||||||
category: string;
|
category: string;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
export interface User {
|
export interface User {
|
||||||
id?: string;
|
id: string;
|
||||||
firstName: string;
|
firstName: string;
|
||||||
lastName: string;
|
lastName: string;
|
||||||
|
email: string;
|
||||||
|
phone: string;
|
||||||
|
initials: string;
|
||||||
|
color: string;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue