Files
DefinitelyTyped/types/koa-mount/index.d.ts
Tomek Łaziuk 9b9df23750 [koa-mount] version bump (#22873)
* version fix and dtslint

* dtslint
2018-01-18 13:28:51 -08:00

17 lines
532 B
TypeScript

// Type definitions for koa-mount 3.0
// Project: https://github.com/koajs/mount
// Definitions by: AmirSaber Sharifi <https://github.com/amirsaber>
// Tomek Łaziuk <https://github.com/tlaziuk>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import * as Koa from "koa";
declare function mount(app: Koa.Middleware | Koa): Koa.Middleware;
declare function mount(prefix: string, app: Koa.Middleware | Koa): Koa.Middleware;
declare namespace mount { }
export = mount;