mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
stash
This commit is contained in:
parent
8486fe058f
commit
6266d6bd5a
|
@ -315,6 +315,10 @@ export function getReport(report: unknown): GetReportRequest {
|
||||||
return { type: GET_REPORT_REQUEST, report };
|
return { type: GET_REPORT_REQUEST, report };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ActionCreator {
|
||||||
|
args: string[];
|
||||||
|
}
|
||||||
|
|
||||||
interface LibConfig {
|
interface LibConfig {
|
||||||
actionCreators?: string;
|
actionCreators?: string;
|
||||||
name?: string;
|
name?: string;
|
||||||
|
|
|
@ -12,7 +12,12 @@ import {
|
||||||
import { DISCONNECTED } from '../constants/socketActionTypes';
|
import { DISCONNECTED } from '../constants/socketActionTypes';
|
||||||
import parseJSON from '../utils/parseJSON';
|
import parseJSON from '../utils/parseJSON';
|
||||||
import { recompute } from '../utils/updateState';
|
import { recompute } from '../utils/updateState';
|
||||||
import { LiftedActionDispatchAction, Request, StoreAction } from '../actions';
|
import {
|
||||||
|
ActionCreator,
|
||||||
|
LiftedActionDispatchAction,
|
||||||
|
Request,
|
||||||
|
StoreAction,
|
||||||
|
} from '../actions';
|
||||||
|
|
||||||
export interface Features {
|
export interface Features {
|
||||||
lock?: boolean;
|
lock?: boolean;
|
||||||
|
@ -33,7 +38,7 @@ export interface Options {
|
||||||
connectionId?: string;
|
connectionId?: string;
|
||||||
explicitLib?: string;
|
explicitLib?: string;
|
||||||
lib?: string;
|
lib?: string;
|
||||||
actionCreators?: string;
|
actionCreators?: ActionCreator[];
|
||||||
features: Features;
|
features: Features;
|
||||||
serialize?: boolean;
|
serialize?: boolean;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user