export interface WikiArticle {
    _id: string;
    html: string;
    order: number;
    tags: string[];
    title: string;
}
