Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 416 Bytes

File metadata and controls

15 lines (11 loc) · 416 Bytes

react-native-app-helpers/AwaitingPushSyncableStateCollectionItem

Represents an item of a collection which needs to have its changes pushed to the server on the next sync.

Usage

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

const example: AwaitingPushSyncableStateCollectionItem<`Example Data`> = {
  status: `awaitingPush`,
  data: `Example Data`,
};