UNPKG

diagrams-js

Version:

A TypeScript port of the diagrams Python library for drawing cloud system architecture diagrams as code

8 lines (7 loc) 216 B
export interface ResourceInfo { provider: string; type: string; resource: string; } export declare const allResources: ResourceInfo[]; export declare function findResource(query: string): ResourceInfo[];