mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 06:21:07 +08:00

* feat: update where clause based on log field * chore: small changes are updated --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com>
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import { AddToQueryHOCProps } from 'components/Logs/AddToQueryHOC';
|
|
import { ILog } from 'types/api/logs/log';
|
|
|
|
export type LogDetailProps = {
|
|
log: ILog | null;
|
|
onClose: () => void;
|
|
} & Pick<AddToQueryHOCProps, 'onAddToQuery'>;
|