Skip to content

ProviderContext

type ProviderContext<TConfig> = {
config: z.infer<TConfig>;
services: Services;
};

Defined in: core/src/provider/provider.type.ts:8

Arguments passed to a provider type’s setup: the shared services and its validated config.

Type Parameter
TConfig extends z.ZodType
config: z.infer<TConfig>;

Defined in: core/src/provider/provider.type.ts:10


services: Services;

Defined in: core/src/provider/provider.type.ts:9