Hierarchy

  • Let

Properties

Properties

$let: {
    in: any;
    vars: {
        [key: string]: Expression;
    };
}

Binds variables for use in the specified expression, and returns the result of the expression.

Type declaration

  • in: any

    The expression to evaluate.

  • vars: {
        [key: string]: Expression;
    }

    Assignment block for the variables accessible in the in expression. To assign a variable, specify a string for the variable name and assign a valid expression for the value.

Generated using TypeDoc