https://github.com/streetstrider/deeai
minimalistic and well-typed dependency injection
https://github.com/streetstrider/deeai
Last synced: 4 months ago
JSON representation
minimalistic and well-typed dependency injection
- Host: GitHub
- URL: https://github.com/streetstrider/deeai
- Owner: StreetStrider
- Created: 2021-01-23T20:01:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-24T21:17:08.000Z (over 1 year ago)
- Last Synced: 2025-01-24T22:22:17.530Z (over 1 year ago)
- Language: TypeScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# api
```js
interface Container
{
provide (key, module): Container,
resolve (key): module,
resolve_maybe (key): ?module,
}
```