Topic
Topic
interface Topic {
id: string
label: string
parentId?: string
/**
* Only published questions are counted
*/
questionCount?: number
/**
* Only published questions are counted
*/
questionCountDeep?: number
color?: string
}
interface TopicChildrenDeep {
id: string
}