Files
DefinitelyTyped/types/koa-mount/index.d.ts
Andy 954ee278de Update TypeScript Versions to be at least as high as dependencies' versions (#21288)
* Update `TypeScript Version`s to be at least as high as dependencies' versions

* Run through again
2017-11-08 09:12:14 -08:00

20 lines
579 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
// TypeScript Version: 2.3
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;