diagrams-js
Version:
A TypeScript port of the diagrams Python library for drawing cloud system architecture diagrams as code
12 lines (11 loc) • 954 B
TypeScript
export declare function CRole(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function CRB(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Group(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function RB(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function Role(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function SA(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare function User(label?: string, options?: Record<string, unknown>): import("../index.ts").Node;
export declare const ClusterRole: typeof CRole;
export declare const ClusterRoleBinding: typeof CRB;
export declare const RoleBinding: typeof RB;
export declare const ServiceAccount: typeof SA;