( key: Key<I, S>, service: Types.NoInfer<S> )
| 722 | * @since 2.0.0 |
| 723 | */ |
| 724 | export const make = <I, S>( |
| 725 | key: Key<I, S>, |
| 726 | service: Types.NoInfer<S> |
| 727 | ): Context<I> => makeUnsafe(new Map([[key.key, service]])) |
| 728 | |
| 729 | /** |
| 730 | * Adds a service to a given `Context`. |