aswi2023one-team-to-rule-them-all-gitlab/src/stores/reducers/notesSlice.ts @ 97deff21
1 |
|
---|---|
2 |
export interface Note { |
3 |
username: string |
4 |
userId: string |
5 |
avatarUrl: string |
6 |
items: string[] |
7 |
createdTime: Date |
8 |
updatedTime: Date |
9 |
noteColor: string |
10 |
lastError?: string |
11 |
}
|