siringa 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,8 +16,8 @@ decorator metadata.
16
16
  * [API Reference](#api-reference)
17
17
  * [`class Injector`](#class-injector)
18
18
  * [`interface Injections`](#interface-injections)
19
- * [Copyright Notice](NOTICE.md)
20
- * [License](LICENSE.md)
19
+ * [Copyright Notice](https://github.com/juitnow/siringa/blob/main/NOTICE.md)
20
+ * [License](https://github.com/juitnow/siringa/blob/main/LICENSE.md)
21
21
 
22
22
  Quick Start
23
23
  -----------
@@ -283,7 +283,7 @@ annotated with _JSDoc_).
283
283
  * `injections.injector(): Injector` \
284
284
  Create a sub-injector (child) of the current one
285
285
 
286
- ### `class Injections`
286
+ ### `interface Injections`
287
287
 
288
288
  * `injections.get(component: Constructor): Instance` \
289
289
  Returns the instance bound to the specified constructor (a _class_)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "siringa",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Simple type-checking injection library for Typescript",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",