File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ export interface ActConfig<
38
38
unsubscribe ?: ( count : number , input : Input ) => UnsubscribeAction ;
39
39
}
40
40
41
+ /**
42
+ * @deprecated Use plain RxJS operators instead.
43
+ * For more info see: https://github.com/ngrx/platform/issues/4072
44
+ */
41
45
export function act <
42
46
Input ,
43
47
OutputAction extends Action ,
@@ -46,6 +50,10 @@ export function act<
46
50
project : ( input : Input , index : number ) => Observable < OutputAction > ,
47
51
error : ( error : any , input : Input ) => ErrorAction
48
52
) : ( source : Observable < Input > ) => Observable < OutputAction | ErrorAction > ;
53
+ /**
54
+ * @deprecated Use plain RxJS operators instead.
55
+ * For more info see: https://github.com/ngrx/platform/issues/4072
56
+ */
49
57
export function act <
50
58
Input ,
51
59
OutputAction extends Action ,
You can’t perform that action at this time.
0 commit comments