UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

25 lines 741 B
import type { IUser, IWorkspace } from "../entities"; import type { Ownership } from "../interfaces/SystemTypes"; export * from "./MonitorDeploymentService"; export * from "./MonitorIngressService"; export * from "./MonitorNamespaceService"; export * from "./MonitorPodService"; export * from "./MonitorSecretService"; export * from "./MonitorServiceService"; export * from "./MonitorStatefulSetService"; export declare class MonitorService { /** * Current login user */ user?: IUser; /** * Current active workspace */ workspace?: IWorkspace; /** * Current owner & workspace */ ownership?: Ownership; constructor(ownership?: Ownership); } //# sourceMappingURL=MonitorService.d.ts.map