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

    Interface JavaScriptAction

    interface JavaScriptAction {
        $CreationOptions?: JavaScriptActionCreationOptions;
        $ID: string;
        $Type: "JavaScriptActions$JavaScriptAction";
        actionDefaultReturnName: string;
        actionParameters: CodeActionParameter[];
        actionReturnType: Type;
        actionTypeParameters: TypeParameter[];
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        modelerActionInfo: null | MicroflowActionInfo;
        name: string;
        addTypeParameter(
            options: TypeParameterCreationOptions,
        ): Promise<TypeParameter>;
        getTypeParameter(name: string): undefined | TypeParameter;
    }

    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.

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

    Methods