UNPKG

k8ts

Version:

Powerful framework for building Kubernetes manifests in TypeScript.

12 lines 432 B
import { Resource_Top } from "@k8ts/instruments"; export interface Namespace_Props { } export declare class Namespace<Name extends string = string> extends Resource_Top<Name, Namespace_Props> { constructor(name: Name, props?: Namespace_Props); name: Name; get kind(): import("@k8ts/instruments").Kind.Kind<"", "v1", "Namespace">; protected body(): { spec: {}; }; } //# sourceMappingURL=namespace.d.ts.map