UNPKG

urbanairship-react-native

Version:
13 lines (7 loc) 238 B
/* Copyright Airship and Contributors */ 'use strict'; export type JsonValue = string | number | boolean | null | JsonObject | JsonArray; export type JsonObject = { [key: string]: JsonValue; }; export type JsonArray = JsonValue[];