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

flow-middleware

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flow-middleware - npm Package Compare versions

Comparing version

to
0.2.2-alpha.0

2

dist/flow.d.ts
import { Handler } from 'express';
import { THandler } from './types';
export default function flow<TReqExt = {}, TResExt = {}>(...middlewares: Handler[]): THandler<TReqExt, TResExt>;
export default function flow<TReqExt = {}, TResExt = {}>(...middlewares: Handler[]): THandler<TResExt, TResExt>;
/// <reference types="node" />
import { Handler } from 'express';
import { Handler, Request as ExpressRequest, Response as ExpressResponse } from 'express';
import { IncomingMessage, ServerResponse } from 'http';
export declare type THandler<ReqExt = {}, ResExt = {}> = (req: IncomingMessage, res: ServerResponse) => Promise<[ReqExt, ResExt]>;
export declare type THandler<ReqExt, ResExt> = (req: IncomingMessage, res: ServerResponse) => Promise<[ExpressRequest & Partial<ReqExt>, ExpressResponse & Partial<ResExt>]>;
export interface TCompose<ReqExt = {}, ResExt = {}> {

@@ -6,0 +6,0 @@ <ReqExt, ResExt>(): THandler<ReqExt, ResExt>;

{
"name": "flow-middleware",
"version": "0.2.1",
"version": "0.2.2-alpha.0",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "repository": "git@github.com:piglovesyou/compose-middleware.git",