mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
8 lines
430 B
TypeScript
8 lines
430 B
TypeScript
import type { environmentSpecSchema } from '../custom-resouces/environment/environment.schemas.ts';
|
|
import type { CustomResourceObject } from '../services/custom-resources/custom-resources.custom-resource.ts';
|
|
import { ResourceInstance } from '../services/resources/resources.instance.ts';
|
|
|
|
class EnvironmentInstance extends ResourceInstance<CustomResourceObject<typeof environmentSpecSchema>> {}
|
|
|
|
export { EnvironmentInstance };
|