UNPKG

@redux-devtools/rtk-query-monitor

Version:
12 lines (11 loc) 444 B
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; }