Type Alias Dependencies<TArgs>

Dependencies<TArgs>: {
    readonly [P in keyof TArgs]: Dependency<TArgs[P]>
}

A tuple of async Dependencies that can be resolved to values.

Type Parameters

  • TArgs extends readonly unknown[]

    The argument types supplied to the dependency.