diagrams-js
Version:
A TypeScript port of the diagrams Python library for drawing cloud system architecture diagrams as code
9 lines (8 loc) • 623 B
TypeScript
export declare function PV(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function PVC(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function SC(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Vol(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare const PersistentVolume: typeof PV;
export declare const PersistentVolumeClaim: typeof PVC;
export declare const StorageClass: typeof SC;
export declare const Volume: typeof Vol;