diagrams-js
Version:
A TypeScript port of the diagrams Python library for drawing cloud system architecture diagrams as code
9 lines (8 loc) • 611 B
TypeScript
export declare function Ep(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Ing(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Netpol(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function SVC(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare const Endpoint: typeof Ep;
export declare const Ingress: typeof Ing;
export declare const NetworkPolicy: typeof Netpol;
export declare const Service: typeof SVC;