Vinyl
    Preparing search index...

    Type Alias ValidFactories<Dm>

    ValidFactories: { readonly [K in keyof Dm]: ValidFactory<Dm, K> }

    Validates that the type provided is a valid dependency map.

    This will guarantee that:

    • All dependency factories exist with the correct signature.
    • There are no cyclic dependencies.
    • The factory's dependencies are provided.

    Type Parameters

    • Dm

    ValidFactory