import { ClusterAttributes } from '@backstage/plugin-kubernetes-common'; /** * Contains the details needed to make a delete request to Kubernetes * * @public */ export interface PodScope { podName: string; podNamespace: string; cluster: ClusterAttributes; }