UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

13 lines (12 loc) 569 B
import { ApiError } from '../../lib/k8s/apiProxy'; import { LimitRange } from '../../lib/k8s/limitRange'; import { SimpleTableProps } from '../common'; export interface LimitRangeProps { limitRanges: LimitRange[] | null; errors: ApiError[] | null; hideColumns?: string[]; reflectTableInURL?: SimpleTableProps['reflectInURL']; noNamespaceFilter?: boolean; } export declare function LimitRangeRenderer(props: LimitRangeProps): import("react/jsx-runtime").JSX.Element; export declare function LimitRangeList(): import("react/jsx-runtime").JSX.Element;