Docs (4.0.0)
class Binding type

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