@redux-devtools/rtk-query-monitor
Version:
rtk-query monitor for Redux DevTools
12 lines (11 loc) • 444 B
TypeScript
import { ReactNode, PureComponent } from 'react';
import type { ShouldExpandNodeInitially } from 'react-json-tree';
import { RtkResourceInfo } from '../types';
export interface QueryPreviewDataProps {
data: RtkResourceInfo['state']['data'];
isWideLayout: boolean;
}
export declare class QueryPreviewData extends PureComponent<QueryPreviewDataProps> {
shouldExpandNodeInitially: ShouldExpandNodeInitially;
render(): ReactNode;
}