Files
operator/src/instances/gateway.ts
Morten Olsen b8bb16ccbb updates
2025-08-12 22:32:09 +02:00

9 lines
339 B
TypeScript

import type { KubernetesObject } from '@kubernetes/client-node';
import { ResourceInstance } from '../services/resources/resources.instance.ts';
import type { K8SGatewayV1 } from '../__generated__/resources/K8SGatewayV1.ts';
class GatewayInstance extends ResourceInstance<KubernetesObject & K8SGatewayV1> {}
export { GatewayInstance };