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