import StyleObject from './styleObject'; import PropertyObject from './propertyObject'; import Filter from './filter'; import GenObject from './genObject'; export interface Dashboard extends GenObject { state: { status: string; by: string; timestamp: number; }; category: string; filters?: Filter[]; layout: string; styles?: StyleObject[]; properties?: PropertyObject[]; createdAt: number; updatedAt: number; }