redux-devtools
Version:
Redux DevTools with hot reloading and time travel
49 lines (48 loc) • 3.41 kB
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
import { EnhancedStore, LiftedState, LiftedStore, Options } from 'redux-devtools-instrument';
import { Action } from 'redux';
export interface Props<S, A extends Action<unknown>, MonitorState, MonitorAction extends Action<unknown>> {
store?: EnhancedStore<S, A, MonitorState>;
}
export declare type Monitor<S, A extends Action<unknown>, MonitorProps extends LiftedState<S, A, MonitorState>, MonitorState, MonitorAction extends Action<unknown>> = React.ReactElement<MonitorProps, React.ComponentType<MonitorProps & LiftedState<S, A, MonitorState>> & {
update(monitorProps: MonitorProps, state: MonitorState | undefined, action: MonitorAction): MonitorState;
}>;
export default function createDevTools<S, A extends Action<unknown>, MonitorProps extends LiftedState<S, A, MonitorState>, MonitorState, MonitorAction extends Action<unknown>>(children: Monitor<S, A, MonitorProps, MonitorState, MonitorAction>): {
new (props: Props<S, A, MonitorState, MonitorAction>, context: {
store?: EnhancedStore<S, A, MonitorState>;
}): {
liftedStore?: LiftedStore<S, A, MonitorState> | undefined;
render(): JSX.Element | null;
context: any;
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Props<S, A, MonitorState, MonitorAction>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly<Props<S, A, MonitorState, MonitorAction>> & Readonly<{
children?: React.ReactNode;
}>;
state: Readonly<{}>;
refs: {
[key: string]: React.ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<Props<S, A, MonitorState, MonitorAction>>, nextState: Readonly<{}>, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<Props<S, A, MonitorState, MonitorAction>>, prevState: Readonly<{}>): any;
componentDidUpdate?(prevProps: Readonly<Props<S, A, MonitorState, MonitorAction>>, prevState: Readonly<{}>, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<Props<S, A, MonitorState, MonitorAction>>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Props<S, A, MonitorState, MonitorAction>>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<Props<S, A, MonitorState, MonitorAction>>, nextState: Readonly<{}>, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<Props<S, A, MonitorState, MonitorAction>>, nextState: Readonly<{}>, nextContext: any): void;
};
contextTypes: {
store: PropTypes.Requireable<object>;
};
propTypes: {
store: PropTypes.Requireable<object>;
};
instrument: (options?: Options<S, A, MonitorState, MonitorAction> | undefined) => import("redux").StoreEnhancer<import("redux-devtools-instrument").InstrumentExt<any, any, MonitorState>, {}>;
contextType?: React.Context<any> | undefined;
};