interface TemplateObj {
    created_at: Date;
    image_logo?: string;
    image_main?: string;
    name: string;
    type: "dashboard" | "analysis";
    updated_at: Date;
}

Properties

created_at: Date
image_logo?: string
image_main?: string
name: string
type: "dashboard" | "analysis"
updated_at: Date