Comparing version 0.0.7 to 0.0.8
@@ -0,1 +1,2 @@ | ||
import { Annotations } from './annotations'; | ||
export declare function makeParamDecorator(token: any, ...params: any[]): ParameterDecorator; | ||
@@ -5,1 +6,2 @@ export declare function makePropertyDecorator(token: any, ...params: any[]): PropertyDecorator; | ||
export declare function makeClassDecorator(token: any, ...params: any[]): ClassDecorator; | ||
export declare function getAnnotations(target: any): Annotations; |
@@ -38,3 +38,3 @@ import { Annotations } from './annotations'; | ||
} | ||
function getAnnotations(target) { | ||
export function getAnnotations(target) { | ||
if (!target.hasOwnProperty('__annotaions__')) { | ||
@@ -41,0 +41,0 @@ const annotations = new Annotations(); |
{ | ||
"name": "@tanbo/di", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "A dependency injection Library", | ||
@@ -5,0 +5,0 @@ "main": "./bundles/public-api.js", |
19687
567