Vinyl
    Preparing search index...

    Type Alias Factories<T>

    Factories: { readonly [K in keyof T]: Factory<T[K]> }

    A map from dependency keys to factory functions.

    For each property K in T, if T[K] is a Dependency, the value must be a Factory that produces T[K]. If T[K] is not a Dependency, the property type resolves to never, causing a compile-time error.

    This ensures factories are defined only for valid dependencies and that each factory is correctly typed.

    Type Parameters

    • T = any

      A record whose values are expected to be Dependency types.