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