type StringFormatArgsFor
A type that’s used to determine the arguments for bound.strf().
static
type StringFormatArgsFor<S extends string> = S extends `${string}${"%["}${string}` ? [{
[p: string]: Binding | string;
}, ...Array<Binding | string>] : Array<Binding | string>Related
- class BindingA class that represents a property binding.
