mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 13:09:07 +01:00
64884ae867
* 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;
|
|
}
|