TypeScript/tests/cases/compiler/declareExternalModuleWithExportAssignedFundule.ts
2014-07-12 17:30:19 -07:00

24 lines
386 B
TypeScript

declare module "express" {
export = express;
function express(): express.ExpressServer;
module express {
export interface ExpressServer {
enable(name: string): ExpressServer;
post(path: RegExp, handler: (req: Function) => void ): void;
}
export class ExpressServerRequest {
}
}
}