Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thisisagile/easy

Package Overview
Dependencies
Maintainers
2
Versions
1276
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thisisagile/easy - npm Package Compare versions

Comparing version 1.12.11 to 1.12.12

6

dist/services/AppProvider.d.ts
import { Constructor } from '../types';
export declare class AppProvider {
use: <T>(resource: Constructor<T>) => this;
export interface AppProvider {
use: (h: unknown) => void;
route: (r: Constructor) => void;
listen: (port: number) => void;
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppProvider = void 0;
class AppProvider {
constructor() {
this.use = (resource) => this;
}
}
exports.AppProvider = AppProvider;
//# sourceMappingURL=AppProvider.js.map
{
"name": "@thisisagile/easy",
"version": "1.12.11",
"version": "1.12.12",
"description": "Straightforward library for building domain-driven microservice architectures",

@@ -5,0 +5,0 @@ "author": "Sander Hoogendoorn",

import { Constructor } from '../types';
export class AppProvider {
use = <T>(resource: Constructor<T>): this => this;
export interface AppProvider {
use: (h: unknown) => void;
route: (r: Constructor) => void;
listen: (port: number) => void
}

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