@alauda/doom
Version:
Doctor Doom making docs.
12 lines (11 loc) • 420 B
TypeScript
export interface K8sAPIDefinition {
group?: string;
version: string;
kind: string;
}
export interface K8sAPIEndpointsProps extends K8sAPIDefinition {
namespaced?: boolean;
hasStatus?: boolean;
pathPrefix?: string;
}
export declare const K8sAPIEndpoints: ({ hasStatus, group, version, kind, pathPrefix: pathPrefix_, namespaced, }: K8sAPIEndpointsProps) => import("react/jsx-runtime").JSX.Element;