add definitions for koa-bodyparser

This commit is contained in:
hellopao
2016-03-22 10:34:06 +08:00
parent 9f82660075
commit 667df4b7a7
2 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/// <reference path="../koa/koa.d.ts" />
/// <reference path="koa-bodyparser.d.ts" />
import * as Koa from "koa";
import bodyParser = require("koa-bodyparser");
const app = new Koa();
app.use(bodyParser({ strict: false }));
app.listen(80)

64
koa-bodyparser/koa-bodyparser.d.ts vendored Normal file
View File

@@ -0,0 +1,64 @@
// Type definitions for koa-bodyparser v3.x
// Project: https://github.com/koajs/bodyparser
// Definitions by: Jerry Chin <https://github.com/hellopao/>
// Definitions: https://github.com/hellopao/DefinitelyTyped
/* =================== USAGE ===================
import bodyParser = require("koa-bodyparser");
var Koa = require('koa');
var app = new Koa();
app.use(bodyParser());
=============================================== */
/// <reference path="../koa/koa.d.ts" />
declare module "koa-bodyparser" {
import * as Koa from "koa";
function bodyParser(opts?: {
/**
* requested encoding. Default is utf-8 by co-body
*/
encode?: string;
/**
* limit of the urlencoded body. If the body ends up being larger than this limit
* a 413 error code is returned. Default is 56kb
*/
formLimit?: string;
/**
* limit of the json body. Default is 1mb
*/
jsonLimit?: string;
/**
* when set to true, JSON parser will only accept arrays and objects. Default is true
*/
strict?: boolean;
/**
* custom json request detect function. Default is null
*/
detectJSON?: (ctx: Koa.Context) => boolean;
/**
* support extend types
*/
extendTypes?: {
json?: string[];
form?: string[];
}
/**
* support custom error handle
*/
onerror?: (err: Error, ctx: Koa.Context) => void;
}): { (ctx: Koa.Context, next?: () => any): any };
export = bodyParser;
}