@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
|
@@ -1391,6 +1391,7 @@
|
|
|
1391
1391
|
* RxJS operator for selecting out specific actions.
|
|
1392
1392
|
*
|
|
1393
1393
|
* This will grab actions that have just been dispatched as well as actions that have completed
|
|
1394
|
+
* @template T
|
|
1394
1395
|
* @param {...?} allowedTypes
|
|
1395
1396
|
* @return {?}
|
|
1396
1397
|
*/
|
|
@@ -1405,6 +1406,7 @@
|
|
|
1405
1406
|
* RxJS operator for selecting out specific actions.
|
|
1406
1407
|
*
|
|
1407
1408
|
* This will ONLY grab actions that have just been dispatched
|
|
1409
|
+
* @template T
|
|
1408
1410
|
* @param {...?} allowedTypes
|
|
1409
1411
|
* @return {?}
|
|
1410
1412
|
*/
|
|
@@ -1419,6 +1421,7 @@
|
|
|
1419
1421
|
* RxJS operator for selecting out specific actions.
|
|
1420
1422
|
*
|
|
1421
1423
|
* This will ONLY grab actions that have just been successfully completed
|
|
1424
|
+
* @template T
|
|
1422
1425
|
* @param {...?} allowedTypes
|
|
1423
1426
|
* @return {?}
|
|
1424
1427
|
*/
|
|
@@ -1433,6 +1436,7 @@
|
|
|
1433
1436
|
* RxJS operator for selecting out specific actions.
|
|
1434
1437
|
*
|
|
1435
1438
|
* This will ONLY grab actions that have just been canceled
|
|
1439
|
+
* @template T
|
|
1436
1440
|
* @param {...?} allowedTypes
|
|
1437
1441
|
* @return {?}
|
|
1438
1442
|
*/
|
|
@@ -1447,6 +1451,7 @@
|
|
|
1447
1451
|
* RxJS operator for selecting out specific actions.
|
|
1448
1452
|
*
|
|
1449
1453
|
* This will ONLY grab actions that have just been completed
|
|
1454
|
+
* @template T
|
|
1450
1455
|
* @param {...?} allowedTypes
|
|
1451
1456
|
* @return {?}
|
|
1452
1457
|
*/
|
|
@@ -1467,6 +1472,7 @@
|
|
|
1467
1472
|
* RxJS operator for selecting out specific actions.
|
|
1468
1473
|
*
|
|
1469
1474
|
* This will ONLY grab actions that have just thrown an error
|
|
1475
|
+
* @template T
|
|
1470
1476
|
* @param {...?} allowedTypes
|
|
1471
1477
|
* @return {?}
|
|
1472
1478
|
*/
|