diagrams-js
Version:
A TypeScript port of the diagrams Python library for drawing cloud system architecture diagrams as code
6 lines (5 loc) • 554 B
TypeScript
export declare function Firewall(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Router(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Subnet(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Switch(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function VPN(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;