The definition of the function that was called.

interface Function {
    arguments?: string;
    name?: string;
    output?: null | string;
}

Properties

arguments?: string

The arguments passed to the function.

name?: string

The name of the function.

output?: null | string

The output of the function. This will be null if the outputs have not been submitted yet.