mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 19:40:24 +00:00
15 lines
451 B
TypeScript
15 lines
451 B
TypeScript
|
|
import { TableProps } from 'antd';
|
||
|
|
import { RowData } from 'lib/query/createTableColumnsFromQuery';
|
||
|
|
import { ReactNode } from 'react';
|
||
|
|
import { Query } from 'types/api/queryBuilder/queryBuilderData';
|
||
|
|
import { QueryDataV3 } from 'types/api/widgets/getQuery';
|
||
|
|
|
||
|
|
export type QueryTableProps = Omit<
|
||
|
|
TableProps<RowData>,
|
||
|
|
'columns' | 'dataSource'
|
||
|
|
> & {
|
||
|
|
queryTableData: QueryDataV3[];
|
||
|
|
query: Query;
|
||
|
|
renderActionCell?: (record: RowData) => ReactNode;
|
||
|
|
};
|