Skip to content
Snippets Groups Projects
reactRedux.d.ts 286 B
Newer Older
Glenn Vorhes's avatar
Glenn Vorhes committed
/**
 * Created by glenn on 6/12/2017.
 */
export import React = require('react');
export import ReactDom = require('react-dom');
export { connect, Provider } from 'react-redux';
Glenn Vorhes's avatar
Glenn Vorhes committed
export { combineReducers, createStore, Store } from 'redux';
Glenn Vorhes's avatar
Glenn Vorhes committed
export interface iAction {
    type: string;
}