aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Core/FSTTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Source/Core/FSTTypes.h')
-rw-r--r--Firestore/Source/Core/FSTTypes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Firestore/Source/Core/FSTTypes.h b/Firestore/Source/Core/FSTTypes.h
index 688b2bf..f15f463 100644
--- a/Firestore/Source/Core/FSTTypes.h
+++ b/Firestore/Source/Core/FSTTypes.h
@@ -16,15 +16,17 @@
#import <Foundation/Foundation.h>
+#include "Firestore/core/src/firebase/firestore/model/types.h"
+
NS_ASSUME_NONNULL_BEGIN
@class FSTMaybeDocument;
@class FSTTransaction;
/** FSTBatchID is a locally assigned ID for a batch of mutations that have been applied. */
-typedef int32_t FSTBatchID;
+typedef firebase::firestore::model::BatchId FSTBatchID;
-typedef int32_t FSTTargetID;
+typedef firebase::firestore::model::TargetId FSTTargetID;
typedef int64_t FSTListenSequenceNumber;