Skip to content

Instantly share code, notes, and snippets.

@CharGrnmn
Created November 11, 2019 10:57
Show Gist options
  • Select an option

  • Save CharGrnmn/c6f492a3d462f43a51d24012ca5c8485 to your computer and use it in GitHub Desktop.

Select an option

Save CharGrnmn/c6f492a3d462f43a51d24012ca5c8485 to your computer and use it in GitHub Desktop.
actions.d.ts file from the ngrx/effects library
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