// Type definitions for basic-auth // Project: https://github.com/jshttp/basic-auth // Definitions by: Clément Bourgeois // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare function auth(req: Express.Request): auth.BasicAuthResult; declare namespace auth { interface BasicAuthResult { name: string; pass: string; } } export = auth;