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

    Interface JavaScriptAction

    A unit is a container of elements, it can not contain other units.

    interface JavaScriptAction {
        $CreationOptions?: JavaScriptActionCreationOptions;
        $ID: string;
        $Type: "JavaScriptActions$JavaScriptAction";
        $UnitID?: string;
        actionDefaultReturnName: string;
        actionParameters: CodeActionParameter[];
        actionReturnType: Type;
        actionTypeParameters: TypeParameter[];
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        modelerActionInfo: MicroflowActionInfo | null;
        name: string;
        platform: SupportedPlatform;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "JavaScriptActions$JavaScriptAction"

    The type of the element.

    $UnitID?: string
    actionDefaultReturnName: string
    actionParameters: CodeActionParameter[]
    actionReturnType: Type
    actionTypeParameters: TypeParameter[]
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    modelerActionInfo: MicroflowActionInfo | null
    name: string
    platform: SupportedPlatform