@harmowatch/ngx-redux-core
Version:
[](https://gitter.im/harmowatch/ngx-redux-core?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
13 lines (12 loc) • 386 B
TypeScript
import { ReduxStateProvider } from '../providers/redux-state.provider';
export interface TestingState {
todo: {
isFetching: boolean;
items: string[];
};
}
export declare class TestingStateProvider extends ReduxStateProvider<TestingState> {
static readonly NAME: string;
static readonly INITIAL_STATE: TestingState;
getInitialState(): TestingState;
}