File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
core/src/firebase/firestore/model Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 16
16
17
17
#import < Foundation/Foundation.h>
18
18
19
+ #include " Firestore/core/src/firebase/firestore/model/types.h"
20
+
19
21
NS_ASSUME_NONNULL_BEGIN
20
22
21
23
@class FSTMaybeDocument;
22
24
@class FSTTransaction;
23
25
24
26
/* * FSTBatchID is a locally assigned ID for a batch of mutations that have been applied. */
25
- typedef int32_t FSTBatchID;
27
+ typedef firebase::firestore::model::BatchId FSTBatchID;
26
28
27
- typedef int32_t FSTTargetID;
29
+ typedef firebase::firestore::model::TargetId FSTTargetID;
28
30
29
31
typedef int64_t FSTListenSequenceNumber;
30
32
Original file line number Diff line number Diff line change @@ -23,6 +23,12 @@ namespace firebase {
23
23
namespace firestore {
24
24
namespace model {
25
25
26
+ /* *
27
+ * BatchId is a locally assigned ID for a batch of mutations that have been
28
+ * applied.
29
+ */
30
+ typedef int32_t BatchId;
31
+
26
32
typedef int32_t TargetId;
27
33
28
34
} // namespace model
You can’t perform that action at this time.
0 commit comments