export interface Comment { title: string; icon: string; description: string; color: string; screenshot?: string; } export interface Content { id: string; title: string; icon?: string; description: string; color?: string; tag?: Tag[]; } export interface Tag { id: string; name: string; sort: number; color?: string; } export interface Word { data_type: string; tag?: string[]; word?: string; word_meaning?: string; part_of_speech?: string; prefix_parent?: string; prefix?: string; prefix_meaning?: string; root_parent?: string; root?: string; root_meaning?: string; suffix?: string; suffix_meaning?: string; }