Repository URL to install this package:
|
Version:
0.0.13 ▾
|
/// <reference types="express" />
import { Response } from './typings';
export declare const respondRedirect: (res: Response, url: string) => void;
export declare const respondHyperText: (res: Response, status: number, html: string) => void;
export declare const fromExceptionToMarkupString: (exception: Error) => string;
export declare const respondError: (res: Response, exception: Error) => void;