Created
November 11, 2019 10:57
-
-
Save CharGrnmn/c6f492a3d462f43a51d24012ca5c8485 to your computer and use it in GitHub Desktop.
actions.d.ts file from the ngrx/effects library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export declare class Actions<V = Action> extends Observable<V> { | |
| constructor(source?: Observable<V>); | |
| lift<R>(operator: Operator<V, R>): Observable<R>; | |
| //.. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment