File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,6 @@ const Parse: ParseType = {
120
120
CoreManager : CoreManager ,
121
121
Config : Config ,
122
122
Error : ParseError ,
123
- EventuallyQueue : EventuallyQueue ,
124
123
FacebookUtils : FacebookUtils ,
125
124
File : File ,
126
125
GeoPoint : GeoPoint ,
@@ -151,6 +150,18 @@ const Parse: ParseType = {
151
150
Hooks : undefined ,
152
151
Parse : undefined ,
153
152
153
+ /**
154
+ * @member {EventuallyQueue} Parse.EventuallyQueue
155
+ * @static
156
+ */
157
+ set EventuallyQueue ( queue : EventuallyQueue ) {
158
+ CoreManager . setEventuallyQueue ( queue ) ;
159
+ } ,
160
+
161
+ get EventuallyQueue ( ) {
162
+ return CoreManager . getEventuallyQueue ( ) ;
163
+ } ,
164
+
154
165
/**
155
166
* Call this method first to set up your authentication tokens for Parse.
156
167
*
You can’t perform that action at this time.
0 commit comments