@ngxs/store 3.7.3-dev.master-6ba2ac1 → 3.7.3-dev.master-b00eeb3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ngxs-store.umd.js +6 -0
- package/bundles/ngxs-store.umd.js.map +1 -1
- package/bundles/ngxs-store.umd.min.js.map +1 -1
- package/esm2015/src/operators/of-action.js +7 -1
- package/esm5/src/operators/of-action.js +7 -1
- package/fesm2015/ngxs-store.js +6 -0
- package/fesm2015/ngxs-store.js.map +1 -1
- package/fesm5/ngxs-store.js +6 -0
- package/fesm5/ngxs-store.js.map +1 -1
- package/ngxs-store.metadata.json +1 -1
- package/package.json +1 -1
- package/src/operators/of-action.d.ts +20 -7
package/fesm5/ngxs-store.js
CHANGED
|
@@ -1173,6 +1173,7 @@ if (false) {
|
|
|
1173
1173
|
* RxJS operator for selecting out specific actions.
|
|
1174
1174
|
*
|
|
1175
1175
|
* This will grab actions that have just been dispatched as well as actions that have completed
|
|
1176
|
+
* @template T
|
|
1176
1177
|
* @param {...?} allowedTypes
|
|
1177
1178
|
* @return {?}
|
|
1178
1179
|
*/
|
|
@@ -1187,6 +1188,7 @@ function ofAction() {
|
|
|
1187
1188
|
* RxJS operator for selecting out specific actions.
|
|
1188
1189
|
*
|
|
1189
1190
|
* This will ONLY grab actions that have just been dispatched
|
|
1191
|
+
* @template T
|
|
1190
1192
|
* @param {...?} allowedTypes
|
|
1191
1193
|
* @return {?}
|
|
1192
1194
|
*/
|
|
@@ -1201,6 +1203,7 @@ function ofActionDispatched() {
|
|
|
1201
1203
|
* RxJS operator for selecting out specific actions.
|
|
1202
1204
|
*
|
|
1203
1205
|
* This will ONLY grab actions that have just been successfully completed
|
|
1206
|
+
* @template T
|
|
1204
1207
|
* @param {...?} allowedTypes
|
|
1205
1208
|
* @return {?}
|
|
1206
1209
|
*/
|
|
@@ -1215,6 +1218,7 @@ function ofActionSuccessful() {
|
|
|
1215
1218
|
* RxJS operator for selecting out specific actions.
|
|
1216
1219
|
*
|
|
1217
1220
|
* This will ONLY grab actions that have just been canceled
|
|
1221
|
+
* @template T
|
|
1218
1222
|
* @param {...?} allowedTypes
|
|
1219
1223
|
* @return {?}
|
|
1220
1224
|
*/
|
|
@@ -1229,6 +1233,7 @@ function ofActionCanceled() {
|
|
|
1229
1233
|
* RxJS operator for selecting out specific actions.
|
|
1230
1234
|
*
|
|
1231
1235
|
* This will ONLY grab actions that have just been completed
|
|
1236
|
+
* @template T
|
|
1232
1237
|
* @param {...?} allowedTypes
|
|
1233
1238
|
* @return {?}
|
|
1234
1239
|
*/
|
|
@@ -1249,6 +1254,7 @@ function ofActionCompleted() {
|
|
|
1249
1254
|
* RxJS operator for selecting out specific actions.
|
|
1250
1255
|
*
|
|
1251
1256
|
* This will ONLY grab actions that have just thrown an error
|
|
1257
|
+
* @template T
|
|
1252
1258
|
* @param {...?} allowedTypes
|
|
1253
1259
|
* @return {?}
|
|
1254
1260
|
*/
|