export interface IComments { id: number; userId: string | null; recordId: string | null; comment: string | null; } export interface IFavorites { userId: string; recordId: string; } export interface IPages { id: string; text: string | null; action: string | null; children: string | null; path: string | null; count: number | null; } export interface IRecords { id: string; title: string | null; full: string | null; path: string | null; pageId: string | null; } export interface IRecordsMeta { id: string; file: string | null; source: string | null; time: string | null; date: string | null; epoch: Date | null; description: string | null; duration: number | null; size: number | null; } export interface ITagsRecords { slug: string; record: string; } export interface IUsers { id: string; token: string | null; name: string | null; email: string | null; banned: number | null; admin: number | null; editor: number | null; }