Interface WorkspaceElement

interface WorkspaceElement {
    id: string;
    name: string;
    key: string;
    state?: WorkspaceElementState;
    errors?: ErrorData[];
}

Properties

Properties

id: string
name: string
key: string
errors?: ErrorData[]