Skip to content
Snippets Groups Projects
reacttst_store.d.ts 285 B
Newer Older
Glenn Vorhes's avatar
Glenn Vorhes committed
import Redux = require('redux');
export declare const theStore: Redux.Store<{}>;
export interface iState {
    oneDate: Date;
    twoDates: {
        start: Date;
        end: Date;
        version: number;
Glenn Vorhes's avatar
Glenn Vorhes committed
    };
}
export declare function getState(): iState;
export default theStore;