bab1dc1d97
* Create type definition for 'koa-json-body' * Follow lint
16 lines
286 B
TypeScript
16 lines
286 B
TypeScript
declare module 'koa-json-body' {
|
|
import { Middleware } from 'koa';
|
|
|
|
interface IKoaJsonBodyOptions {
|
|
strict: boolean;
|
|
limit: string;
|
|
fallback: boolean;
|
|
}
|
|
|
|
function koaJsonBody(opt?: IKoaJsonBodyOptions): Middleware;
|
|
|
|
namespace koaJsonBody {} // Hack
|
|
|
|
export = koaJsonBody;
|
|
}
|