SheetXL - v0.3.20
    Preparing search index...

    Add a custom function.

    interface AddOptions {
        declaration: IFunction.DeclarationJSON;
        descriptor?:
            | IFunction.DescriptorJSON
            | ((locale?: string) => Promise<IFunction.DescriptorJSON>);
        execute: (args: any[]) => any;
    }
    Index

    Properties

    Required.

    descriptor?:
        | IFunction.DescriptorJSON
        | ((locale?: string) => Promise<IFunction.DescriptorJSON>)

    Configuration for UI descriptor.

    execute: (args: any[]) => any

    Required.

    Type declaration

      • (args: any[]): any
      • Parameters

        • args: any[]

        Returns any

        the value of the function.