@dazejs/framework
Version:
Daze.js - A powerful web framework for Node.js
13 lines (11 loc) • 311 B
text/typescript
/**
* Copyright (c) 2020 Chan Zewail
*
* This software is released under the MIT License.
* https: //opensource.org/licenses/MIT
*/
import { Request } from '../http/request';
import { Next } from '../http/middleware';
export interface MiddlewareInterface {
resolve(request: Request, next: Next): any;
}