UNPKG

k8ts

Version:

Powerful framework for building Kubernetes manifests in TypeScript.

13 lines 302 B
export declare namespace Backend { interface HostPath { type: "HostPath"; path: string; } interface Local { type: "Local"; path: string; } type Backend = HostPath | Local; } export type Backend = Backend.Backend; //# sourceMappingURL=backend.d.ts.map