ConfiguredPage

Definition

export interface ConfiguredPage {
    key: string;
    id: string;
    tags: Record<string, string>;
    moduleId: string;
    componentId: string;
    type: ComponentType;
    appRoles: string[];
    userGroups: string[];
    props: any;
}

Usage

import { ConfiguredPage } from 'uxp/components';

Last updated