Skip to content

BoundFunction

type BoundFunction<T> = T extends (container, ...args) => infer R ? (...args) => R : never;

Defined in: get-queries-for-instance.ts:4

T