mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
import type { V1Namespace } from '@kubernetes/client-node';
|
|
|
|
import { ResourceInstance } from '../services/resources/resources.ts';
|
|
|
|
class NamespaceInstance extends ResourceInstance<V1Namespace> {
|
|
public get ready() {
|
|
return this.exists;
|
|
}
|
|
}
|
|
|
|
export { NamespaceInstance };
|