diagrams-js
Version:
A TypeScript port of the diagrams Python library for drawing cloud system architecture diagrams as code
11 lines (10 loc) • 844 B
TypeScript
export declare function API(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function CCM(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function CM(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function KProxy(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Kubelet(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Sched(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare const APIServer: typeof API;
export declare const ControllerManager: typeof CM;
export declare const KubeProxy: typeof KProxy;
export declare const Scheduler: typeof Sched;