UNPKG

@redux-devtools/rtk-query-monitor

Version:
15 lines (14 loc) 640 B
import { Selector } from '@reduxjs/toolkit'; import { ReactNode, PureComponent } from 'react'; import { AnyAction } from 'redux'; import type { KeyPath, ShouldExpandNodeInitially } from 'react-json-tree'; export interface QueryPreviewActionsProps { isWideLayout: boolean; actionsOfQuery: AnyAction[]; } export declare class QueryPreviewActions extends PureComponent<QueryPreviewActionsProps> { selectFormattedActions: Selector<AnyAction[], Record<string, AnyAction>, never>; isLastActionNode: (keyPath: KeyPath, layer: number) => boolean; shouldExpandNodeInitially: ShouldExpandNodeInitially; render(): ReactNode; }