@dkx/http-server
Advanced tools
Comparing version 0.1.5 to 0.1.6
import { Request } from './request'; | ||
import { Response } from './response'; | ||
export declare type RequestState = {}; | ||
export declare interface RequestState { | ||
[key: string]: any; | ||
} | ||
export declare type NextMiddlewareFunction = (response: Response) => Promise<Response>; | ||
export declare type Middleware = (request: Request, response: Response, next: NextMiddlewareFunction, state: RequestState) => Promise<Response>; |
{ | ||
"name": "@dkx/http-server", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Minimalistic HTTP server", | ||
@@ -5,0 +5,0 @@ "repository": "git@gitlab.com:dkx/http/server.git", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27660
338