UNPKG

353 BTypeScriptView Raw
1import * as express from "express";
2import { Server } from "./server";
3export interface IHTTPHeaderNameValue {
4 name: string;
5 value: string;
6}
7export declare function serverSecureHTTPHeader(server: Server, url: string): IHTTPHeaderNameValue | undefined;
8export declare function serverSecure(server: Server, topRouter: express.Application): void;