DefinitelyTyped/types/vhost/vhost-tests.ts
Vincenzo Chianese e21346be33
feat: add vhost types (#43467)
* feat: add vhost types

* refactor: lints
2020-03-31 10:49:40 -07:00

6 lines
167 B
TypeScript

import vhost from 'vhost';
import { Request, Response, NextFunction } from 'express';
vhost('hostname', (_req: Request, _res: Response, _next: NextFunction) => {
});