UNPKG

tachijs

Version:

Highly testable dead simple web server written in Typescript

9 lines 415 B
import express from 'express'; import { BaseResult } from './BaseResult'; export declare class RedirectResult extends BaseResult { readonly location: string; readonly status?: number | undefined; constructor(location: string, status?: number | undefined); execute(req: express.Request, res: express.Response, next: express.NextFunction): Promise<void>; } //# sourceMappingURL=RedirectResult.d.ts.map