UNPKG

@harmowatch/ngx-redux-core

Version:

[![Join the chat at https://gitter.im/harmowatch/ngx-redux-core](https://badges.gitter.im/harmowatch/ngx-redux-core.svg)](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
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; }