interface BuiltInApplyConfiguration {
    indexOfFunction?: number;
    nameOfFunctionArgument?: string;
    unquoteFunction?: boolean;
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

Hierarchy-Diagram

UML class diagram of BuiltInApplyConfiguration

Properties

indexOfFunction?: number

the 0-based index of the argument which is the actual function passed, defaults to 1

nameOfFunctionArgument?: string

does the argument have a name that it can be given by as well?

unquoteFunction?: boolean

Should we unquote the function if it is given as a string?