@redux-devtools/rtk-query-monitor
Version:
rtk-query monitor for Redux DevTools
15 lines (14 loc) • 640 B
TypeScript
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;
}