circe-body-parser
Advanced tools
Comparing version 0.0.4 to 0.0.5
/// <reference types="koa" /> | ||
import * as Koa from 'koa'; | ||
export interface IBodyParserRequest { | ||
body: any; | ||
} | ||
declare module 'koa' { | ||
interface Request extends IBodyParserRequest { | ||
} | ||
} | ||
export interface IIncomingFormOptions { | ||
@@ -4,0 +11,0 @@ encoding?: string; |
@@ -0,0 +0,0 @@ "use strict"; |
{ | ||
"name": "circe-body-parser", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -5,2 +5,11 @@ import * as Koa from 'koa' | ||
export interface IBodyParserRequest { | ||
body: any | ||
} | ||
declare module 'koa' { | ||
// tslint:disable-next-line:no-empty-interface interface-name | ||
interface Request extends IBodyParserRequest {} | ||
} | ||
export interface IIncomingFormOptions { | ||
@@ -7,0 +16,0 @@ encoding?: string |
13431
271