Socket
Socket
Sign inDemoInstall

arrow-express

Package Overview
Dependencies
71
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.1 to 1.2.2

4

dist/controller/controller.d.ts
import { RouteConfigurator } from "../route/route";
export type ControllerHandler<C> = (request: any, response: any) => Promise<C>;
export type ControllerHandler<C = undefined> = (request: any, response: any) => Promise<C>;
export declare class ControllerConfiguration<C = undefined> {

@@ -43,2 +43,2 @@ private _prefix;

}
export declare function Controller<C = unknown>(): ControllerConfiguration<C>;
export declare function Controller<C = undefined>(): ControllerConfiguration<C>;
import { RouteConfigurator } from "../route/route";
export type ControllerHandler<C> = (request: any, response: any) => Promise<C>;
export type ControllerHandler<C = undefined> = (request: any, response: any) => Promise<C>;
export class ControllerConfiguration<C = undefined> {

@@ -80,4 +80,4 @@ private _prefix = "";

export function Controller<C = unknown>(): ControllerConfiguration<C> {
export function Controller<C = undefined>(): ControllerConfiguration<C> {
return new ControllerConfiguration<C>();
}
{
"name": "arrow-express",
"version": "1.2.1",
"version": "1.2.2",
"description": "Library to bootstrap express applications with zero configuration",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc