Files
operator/src/resources/core/crd/crd.ts
Morten Olsen 3ab2b1969a stuff
2025-08-19 22:05:41 +02:00

11 lines
339 B
TypeScript

import type { V1CustomResourceDefinition } from '@kubernetes/client-node';
import { Resource } from '#services/resources/resources.ts';
class CRD extends Resource<V1CustomResourceDefinition> {
public static readonly apiVersion = 'apiextensions.k8s.io/v1';
public static readonly kind = 'CustomResourceDefinition';
}
export { CRD };