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

12 lines
176 B
TypeScript

import * as Koa from "koa";
import * as json from 'koa-json';
const app = new Koa();
app.use(json({
pretty: false,
param: 'pretty',
spaces: 2
}));
app.listen(80)