aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/API/FIRFieldPath+Internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Source/API/FIRFieldPath+Internal.h')
-rw-r--r--Firestore/Source/API/FIRFieldPath+Internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Firestore/Source/API/FIRFieldPath+Internal.h b/Firestore/Source/API/FIRFieldPath+Internal.h
index 227cdad..6fb6add 100644
--- a/Firestore/Source/API/FIRFieldPath+Internal.h
+++ b/Firestore/Source/API/FIRFieldPath+Internal.h
@@ -16,16 +16,16 @@
#import "FIRFieldPath.h"
-@class FSTFieldPath;
+#include "Firestore/core/src/firebase/firestore/model/field_path.h"
NS_ASSUME_NONNULL_BEGIN
@interface FIRFieldPath ()
-- (instancetype)initPrivate:(FSTFieldPath *)path NS_DESIGNATED_INITIALIZER;
-
/** Internal field path representation */
-@property(nonatomic, strong, readonly) FSTFieldPath *internalValue;
+- (const firebase::firestore::model::FieldPath &)internalValue;
+
+- (instancetype)initPrivate:(firebase::firestore::model::FieldPath)path NS_DESIGNATED_INITIALIZER;
@end