Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 263 Bytes

File metadata and controls

13 lines (8 loc) · 263 Bytes

react-native-app-helpers/Json

A type representing an immutable, JSON-serializable value.

Usage

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

const aValue: Json = JSON.parse(`{"hello":"world"}`);

console.log(JSON.stringify(aValue));