Interface FunctionCall<T>

Expression that evaluates to the result of a function call on a list of argument expressions.

Type Parameters

  • T

Hierarchy

Properties

Properties

args: unknown[]
name: T extends string
    ? "case" | "property" | "numberFormat" | "strAbbreviate" | "strCapitalize" | "strConcat" | "strDefaultIfBlank" | "strReplace" | "strStripAccents" | "strSubstring" | "strSubstringStart" | "strToLowerCase" | "strToUpperCase" | "strTrim"
    : T extends number
        ? "sub" | "case" | "max" | "add" | "min" | "round" | "div" | "property" | "abs" | "acos" | "asin" | "atan" | "atan2" | "ceil" | "cos" | "exp" | "floor" | "log" | "modulo" | "mul" | "pi" | "pow" | "random" | "rint" | "sin" | "sqrt" | "strIndexOf" | "strLastIndexOf" | "strLength" | "tan" | "toDegrees" | "toRadians"
        : "case" | "all" | "property" | "any" | "between" | "double2bool" | "equalTo" | "greaterThan" | "greaterThanOrEqualTo" | "in" | "lessThan" | "lessThanOrEqualTo" | "not" | "notEqualTo" | "parseBoolean" | "strEndsWith" | "strEqualsIgnoreCase" | "strMatches" | "strStartsWith"

Generated using TypeDoc