12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Store } from '@ngrx/store';
|
|
|
|
@Injectable()
|
|
export class NgRxStoreSelect {
|
|
static store: Store<any> | undefined = undefined;
|
|
|
|
connect(store: Store<any>) {
|
|
NgRxStoreSelect.store = store;
|
|
}
|
|
}
|