UNPKG

typerinth

Version:

A TypeScript library for interacting with the Modrinth API.

11 lines (10 loc) 243 B
import { RequestBody } from './RequestBody'; /** * JSON request body */ export declare class JsonRequestBody extends RequestBody { private data; constructor(data: any); getContentType(): string; getFormattedBody(): string; }