mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 07:59:48 +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 };
|
||||
}
|
||||
|
||||
export interface ActionCreator {
|
||||
args: string[];
|
||||
}
|
||||
|
||||
interface LibConfig {
|
||||
actionCreators?: string;
|
||||
name?: string;
|
||||
|
|
|
@ -12,7 +12,12 @@ import {
|
|||
import { DISCONNECTED } from '../constants/socketActionTypes';
|
||||
import parseJSON from '../utils/parseJSON';
|
||||
import { recompute } from '../utils/updateState';
|
||||
import { LiftedActionDispatchAction, Request, StoreAction } from '../actions';
|
||||
import {
|
||||
ActionCreator,
|
||||
LiftedActionDispatchAction,
|
||||
Request,
|
||||
StoreAction,
|
||||
} from '../actions';
|
||||
|
||||
export interface Features {
|
||||
lock?: boolean;
|
||||
|
@ -33,7 +38,7 @@ export interface Options {
|
|||
connectionId?: string;
|
||||
explicitLib?: string;
|
||||
lib?: string;
|
||||
actionCreators?: string;
|
||||
actionCreators?: ActionCreator[];
|
||||
features: Features;
|
||||
serialize?: boolean;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user