interface BuiltInApplyConfiguration {
    indexOfFunction?: number;
    nameOfFunctionArgument?: string;
    resolveInEnvironment: "global" | "local";
    resolveValue?: boolean;
    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?

resolveInEnvironment: "global" | "local"

Should the function be resolved in the global environment?

resolveValue?: boolean

Should the value of the function be resolved?

unquoteFunction?: boolean

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