mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-17 06:51:27 +08:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import { K8sJobsData } from 'api/infraMonitoring/getK8sJobsList';
|
|
|
|
export type JobDetailsProps = {
|
|
job: K8sJobsData | null;
|
|
isModalTimeSelection: boolean;
|
|
onClose: () => void;
|
|
};
|