Binding.fmt()
Creates a new binding for a string-formatted value.
static fmt(
format: StringConvertible,
...args:
| Binding[]
| [
{
[K: string]: Binding;
},
]
): Binding<DeferredString>;
Summary
This function is used to create a new binding for a string-formatted value with further embedded bindings.
Parameters
- format — The format string, containing placeholders similar to fmt()
- args — A list of associated bindings
Return value
A new Binding object
Related
class Binding
A class that represents a property binding.
