UNPKG

@chubbyts/chubbyts-dic-types

Version:

Dependency injection container (DIC) types, PSR-11 inspired.

5 lines (4 loc) 94 B
export type Container = { get: <T>(id: string) => T; has: (id: string) => boolean; };