Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 402 Bytes

File metadata and controls

17 lines (12 loc) · 402 Bytes

react-native-app-helpers/PreflightResponseCollection

A singleton within a response to a successful preflight request.

Usage

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

const exampleWithNumberVersion: PreflightResponseSingleton = {
  version: 1234,
};

const exampleWithStringVersion: PreflightResponseSingleton = {
  version: `Example Version`,
};