Kottster Packages API Reference
    Preparing search index...

    Interface PublicCustomPage

    interface PublicCustomPage {
        allowedRoleIds?: string[];
        allowedRoles?: string[];
        hideInSidebar?: boolean;
        icon?: string;
        key: string;
        title: string;
        type: "custom";
        version: string;
    }

    Hierarchy

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

    Properties

    allowedRoleIds?: string[]

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

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