Interface CanvasListResponse

interface CanvasListResponse {
    canvases: {
        id: string;
        last_edited: string;
        name: string;
        tags: string[];
    }[];
    errors?: string[];
    message: string;
}

Hierarchy

  • ServerResponse
    • CanvasListResponse

Properties

canvases: { id: string; last_edited: string; name: string; tags: string[] }[]
errors?: string[]
message: string