Kottster Packages API Reference
    Preparing search index...

    Interface PublicTablePage

    interface PublicTablePage {
        allowedRoleIds?: string[];
        allowedRoles?: string[];
        config: TablePageConfig;
        hideInSidebar?: boolean;
        icon?: string;
        key: string;
        title?: string;
        type: "table";
        version: string;
    }

    Hierarchy

    • Pick<
          TablePage,
          | "key"
          | "title"
          | "icon"
          | "type"
          | "allowedRoles"
          | "allowedRoleIds"
          | "version"
          | "hideInSidebar",
      >
      • PublicTablePage
    Index

    Properties

    allowedRoleIds?: string[]

    Legacy - to be removed in v4. Use allowedRoles instead.

    allowedRoles?: string[]
    hideInSidebar?: boolean
    icon?: string
    key: string
    title?: string
    type: "table"
    version: string