Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 399 Bytes

File metadata and controls

15 lines (11 loc) · 399 Bytes

react-native-app-helpers/PushingSyncableStateCollectionItem

Represents an item of a collection which is in the process of having its local changes pushed to the server.

Usage

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

const example: PushingSyncableStateCollectionItem<`Example Data`> = {
  status: `pushing`,
  data: `Example Data`,
};