New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@spinajs/di

Package Overview
Dependencies
Maintainers
1
Versions
295
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spinajs/di - npm Package Compare versions

Comparing version 2.0.110 to 2.0.111

21

lib/cjs/interfaces.d.ts

@@ -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 @@ */

8

lib/cjs/interfaces.js
"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

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc