export interface DashboardCard { id: number, title: string, width: number, height: number, bookmark?: object, // bookmark is complicated... 'chart_options': object, } export interface Dashboard { id: number, title: string, description?: string, creator?: string, 'is_private': boolean, 'card_order': Array, cards?: Array, }