@mendix/extensions-api - v0.2.4
    Preparing search index...

    Type Alias UISpec

    Specifies a piece of UI that can be shown in a tab, pane, dialog, etc.

    type UISpec = {
        componentName: string;
        queryParams?: { [key: string]: string };
        uiEntrypoint: string;
    }
    Index

    Properties

    componentName: string

    The name of the component that contains the UI.

    queryParams?: { [key: string]: string }

    An optional set of query string parameters to pass when opening the UI.

    uiEntrypoint: string

    The UI entry point name to look up in the component manifest.