mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 16:57:14 +01:00
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;
|
||
|
}
|