Files
DefinitelyTyped/types/koa-is-json/index.d.ts
2022-11-08 12:43:34 -08:00

8 lines
277 B
TypeScript

// Type definitions for koa-is-json 1.0
// Project: https://github.com/koajs/is-json
// Definitions by: HakurouKen <https://github.com/HakurouKen>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function isJSON(body: any): boolean;
export = isJSON;