Files
DefinitelyTyped/koa-bodyparser/koa-bodyparser-tests.ts
Ryan Cavanaugh 81862d240d More fixes
2016-05-04 22:50:05 -07:00

8 lines
155 B
TypeScript

import * as Koa from "koa";
import bodyParser = require("koa-bodyparser");
const app = new Koa();
app.use(bodyParser({ strict: false }));
app.listen(80)