Files
DefinitelyTyped/types/koa-mount/index.d.ts
2017-03-24 14:27:52 -07:00

20 lines
553 B
TypeScript

// Type definitions for koa-mount v2.0.0
// Project: https://github.com/koajs/mount
// Definitions by: AmirSaber Sharifi <https://github.com/amirsaber>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as Koa from "koa";
declare function mount(app: Koa.Middleware): Koa.Middleware;
declare function mount(app: Koa): Koa.Middleware;
declare function mount(prefix: string, app: Koa.Middleware): Koa.Middleware;
declare function mount(prefix: string, app: Koa): Koa.Middleware;
declare namespace mount { }
export = mount;