interface CompiledExpressionProps {
    $$watchDelegate: ((arg0: Scope, arg1: WatchListener, arg2: boolean, arg3: CompiledExpression, arg4: string | CompiledExpression | ((scope: Scope) => any)) => any);
    assign: ((arg0: any, arg1: any) => any);
    constant: boolean;
    inputs: Function | any[];
    isPure: boolean;
    literal: boolean;
    oneTime: boolean;
}

Properties

$$watchDelegate: ((arg0: Scope, arg1: WatchListener, arg2: boolean, arg3: CompiledExpression, arg4: string | CompiledExpression | ((scope: Scope) => any)) => any)
assign: ((arg0: any, arg1: any) => any)

Assigns a value to a context. If value is not provided,

constant: boolean

Indicates if the expression is constant.

inputs: Function | any[]
isPure: boolean
literal: boolean

Indicates if the expression is a literal.

oneTime: boolean