@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
13 lines (12 loc) • 589 B
TypeScript
import { ApiError } from '../../lib/k8s/apiProxy';
import ResourceQuota from '../../lib/k8s/resourceQuota';
import { SimpleTableProps } from '../common';
export interface ResourceQuotaProps {
resourceQuotas: ResourceQuota[] | null;
errors: ApiError[] | null;
hideColumns?: string[];
reflectTableInURL?: SimpleTableProps['reflectInURL'];
noNamespaceFilter?: boolean;
}
export declare function ResourceQuotaRenderer(props: ResourceQuotaProps): import("react/jsx-runtime").JSX.Element;
export default function ResourceQuotaList(): import("react/jsx-runtime").JSX.Element;