Update topic
This commit is contained in:
parent
9c4ea4ca90
commit
bca3b6b699
2 changed files with 33 additions and 14 deletions
|
@ -1,11 +1,11 @@
|
|||
export interface Topic {
|
||||
id: number;
|
||||
name: string;
|
||||
content: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
version: number;
|
||||
parentTopicId: number;
|
||||
id: number
|
||||
name: string
|
||||
content: string
|
||||
createdAt: string
|
||||
updatedAt: string
|
||||
version: number
|
||||
parentTopicId?: number
|
||||
}
|
||||
|
||||
export let topics: Topic[] = [];
|
||||
export const topics: Topic[] = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue