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

    Interface JavaScriptActionCreationOptions

    interface JavaScriptActionCreationOptions {
        documentation?: string;
        name: string;
        platform?: "All" | "Native" | "Web";
        returnName?: string;
        returnType: {
            entity?: string;
            enumeration?: string;
            type:
                | "Boolean"
                | "Decimal"
                | "Enumeration"
                | "String"
                | "Object"
                | "Void"
                | "Date and time"
                | "Integer/Long"
                | "List";
            typeParameter?: string;
        };
        toolBoxInformation?: { caption?: string; category: string };
        typeParameters?: string[];
    }
    Index

    Properties

    documentation?: string
    name: string
    platform?: "All" | "Native" | "Web"
    returnName?: string
    returnType: {
        entity?: string;
        enumeration?: string;
        type:
            | "Boolean"
            | "Decimal"
            | "Enumeration"
            | "String"
            | "Object"
            | "Void"
            | "Date and time"
            | "Integer/Long"
            | "List";
        typeParameter?: string;
    }
    toolBoxInformation?: { caption?: string; category: string }
    typeParameters?: string[]