type ValidPathString
A type that’s used to check binding path strings.
static
type ValidPathString<S> = S extends `${string}${" " | "%" | "(" | ")" | "[" | "]" | "{" | "}" | "|" | "&" | "," | "?"}${string}` ? "Error: Invalid character in binding path" : S extends string ? S : "Error: Invalid argument"
Related
- class BindingA class that represents a property binding.