UNPKG

@redux-devtools/rtk-query-monitor

Version:
13 lines (12 loc) 477 B
import { ReactNode, PureComponent } from 'react'; import type { ShouldExpandNodeInitially } from 'react-json-tree'; import { ApiStats, RtkQueryApiState } from '../types'; export interface QueryPreviewApiProps { apiStats: ApiStats | null; apiState: RtkQueryApiState | null; isWideLayout: boolean; } export declare class QueryPreviewApi extends PureComponent<QueryPreviewApiProps> { shouldExpandApiStateNode: ShouldExpandNodeInitially; render(): ReactNode; }