@ngxs/store
Version:
15 lines (14 loc) • 468 B
TypeScript
import { OnDestroy } from '@angular/core';
import { Store } from '../../store';
import { NgxsConfig } from '../../symbols';
/**
* Allows the select decorator to get access to the DI store.
* @internal only use in @Select decorator
* @ignore
*/
export declare class SelectFactory implements OnDestroy {
static store: Store | null;
static config: NgxsConfig | null;
constructor(store: Store, config: NgxsConfig);
ngOnDestroy(): void;
}