k8ts
Version:
Powerful framework for building Kubernetes manifests in TypeScript.
17 lines • 365 B
TypeScript
import { Backend } from "./backend";
export declare function parseBackend(backend?: Backend): {
hostPath?: undefined;
local?: undefined;
} | {
hostPath: {
path: string;
type: "HostPath";
};
local?: undefined;
} | {
local: {
path: string;
};
hostPath?: undefined;
};
//# sourceMappingURL=parse-backend.d.ts.map