2023-07-12 16:59:33 +03:00
|
|
|
import { AddToQueryHOCProps } from 'components/Logs/AddToQueryHOC';
|
2023-07-06 14:22:44 +03:00
|
|
|
import { ILog } from 'types/api/logs/log';
|
|
|
|
|
import { IBuilderQuery } from 'types/api/queryBuilder/queryBuilderData';
|
2023-06-23 11:19:53 +03:00
|
|
|
|
2023-07-06 14:22:44 +03:00
|
|
|
export type LogsExplorerListProps = {
|
|
|
|
|
isLoading: boolean;
|
|
|
|
|
currentStagedQueryData: IBuilderQuery | null;
|
|
|
|
|
logs: ILog[];
|
|
|
|
|
onEndReached: (index: number) => void;
|
|
|
|
|
onExpand: (log: ILog) => void;
|
|
|
|
|
onOpenDetailedView: (log: ILog) => void;
|
2023-07-12 16:59:33 +03:00
|
|
|
} & Pick<AddToQueryHOCProps, 'onAddToQuery'>;
|