@spinajs/di
Advanced tools
Comparing version 2.0.110 to 2.0.111
@@ -12,2 +12,23 @@ /// <reference types="node" /> | ||
/** | ||
* Class info structure | ||
*/ | ||
export declare class ClassInfo<T> { | ||
/** | ||
* Full file path of loaded class | ||
*/ | ||
file: string; | ||
/** | ||
* Class name | ||
*/ | ||
name: string; | ||
/** | ||
* Javascript class object | ||
*/ | ||
type: any; | ||
/** | ||
* Resolved instance | ||
*/ | ||
instance?: T; | ||
} | ||
/** | ||
* Interface to describe DI binding behaviour | ||
@@ -14,0 +35,0 @@ */ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Bootstrapper = exports.AsyncService = exports.SyncService = exports.Service = void 0; | ||
exports.Bootstrapper = exports.AsyncService = exports.SyncService = exports.Service = exports.ClassInfo = void 0; | ||
/** | ||
* Class info structure | ||
*/ | ||
class ClassInfo { | ||
} | ||
exports.ClassInfo = ClassInfo; | ||
/** | ||
* Interface to describe DI resolve strategies. Strategies are used do | ||
@@ -6,0 +12,0 @@ * do some work at object creation eg. initialize objects that inherits from same class |
@@ -12,2 +12,23 @@ /// <reference types="node" resolution-mode="require"/> | ||
/** | ||
* Class info structure | ||
*/ | ||
export declare class ClassInfo<T> { | ||
/** | ||
* Full file path of loaded class | ||
*/ | ||
file: string; | ||
/** | ||
* Class name | ||
*/ | ||
name: string; | ||
/** | ||
* Javascript class object | ||
*/ | ||
type: any; | ||
/** | ||
* Resolved instance | ||
*/ | ||
instance?: T; | ||
} | ||
/** | ||
* Interface to describe DI binding behaviour | ||
@@ -14,0 +35,0 @@ */ |
/** | ||
* Class info structure | ||
*/ | ||
export class ClassInfo { | ||
} | ||
/** | ||
* Interface to describe DI resolve strategies. Strategies are used do | ||
@@ -3,0 +8,0 @@ * do some work at object creation eg. initialize objects that inherits from same class |
{ | ||
"name": "@spinajs/di", | ||
"version": "2.0.110", | ||
"version": "2.0.111", | ||
"description": "lightweight di container ", | ||
@@ -53,3 +53,3 @@ "main": "lib/cjs/index.js", | ||
"dependencies": { | ||
"@spinajs/exceptions": "^2.0.110", | ||
"@spinajs/exceptions": "^2.0.111", | ||
"lodash": "^4.17.21", | ||
@@ -56,0 +56,0 @@ "reflect-metadata": "^0.1.13" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
396734
4211
Updated@spinajs/exceptions@^2.0.111