diagrams-js
Version:
A TypeScript port of the diagrams Python library for drawing cloud system architecture diagrams as code
27 lines (26 loc) • 2.48 kB
TypeScript
export declare function AutoScaling(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function BatchCompute(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ContainerRegistry(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ContainerService(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ElasticComputeService(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ElasticContainerInstance(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ElasticHighPerformanceComputing(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ElasticSearch(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function FunctionCompute(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function OperationOrchestrationService(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ResourceOrchestrationService(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ServerLoadBalancer(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function ServerlessAppEngine(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function SimpleApplicationServer(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function WebAppService(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare const ESS: typeof AutoScaling;
export declare const ECS: typeof ElasticComputeService;
export declare const ECI: typeof ElasticContainerInstance;
export declare const EHPC: typeof ElasticHighPerformanceComputing;
export declare const FC: typeof FunctionCompute;
export declare const OOS: typeof OperationOrchestrationService;
export declare const ROS: typeof ResourceOrchestrationService;
export declare const SLB: typeof ServerLoadBalancer;
export declare const SAE: typeof ServerlessAppEngine;
export declare const SAS: typeof SimpleApplicationServer;
export declare const WAS: typeof WebAppService;