UNPKG

k8ts

Version:

Powerful framework for building Kubernetes manifests in TypeScript.

15 lines (12 loc) 274 B
export namespace Backend { export interface HostPath { type: "HostPath" path: string } export interface Local { type: "Local" path: string } export type Backend = HostPath | Local } export type Backend = Backend.Backend