interface FormNodeTable {
    designComponent: "Table";
    id: string;
    options: {
        table?: {
            attributeNameSorted?: string;
            attributeNames: string[];
            relationship: JRelationship;
        };
    };
    title?: string;
    type: "Table";
}

Hierarchy (view full)

Properties

designComponent: "Table"
id: string
options: {
    table?: {
        attributeNameSorted?: string;
        attributeNames: string[];
        relationship: JRelationship;
    };
}

Type declaration

  • Optional table?: {
        attributeNameSorted?: string;
        attributeNames: string[];
        relationship: JRelationship;
    }
    • Optional attributeNameSorted?: string
    • attributeNames: string[]
    • relationship: JRelationship
title?: string
type: "Table"