Type utility for values that can be either an ExpressionBuilder or a direct value
Also allows string as they can represent "={{ }}" expressions pointing to a T value
type ExpressionOrValue<T> = ExpressionBuilder<any, any, T> | T | string
Type utility for values that can be either an ExpressionBuilder or a direct value
Also allows string as they can represent "={{ }}" expressions pointing to a T value