Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 253 Bytes

File metadata and controls

14 lines (10 loc) · 253 Bytes

react-native-app-helpers/JsonRequestBody

A request body is to contain JSON.

Usage

import type { JsonRequestBody } from "react-native-app-helpers";

const example: JsonRequestBody = {
  type: `json`,
  value: { example: `JSON` },
};