UNPKG

openapi-graph-types

Version:

The types of the openapi-graph library.

8 lines (7 loc) 294 B
import { OpenAPIContent, OpenAPIGraphInterface } from "."; export declare type OpenAPIGraphsBuilderConstructor = new (apis: OpenAPIContent[]) => OpenAPIGraphsBuilderInterface; export interface OpenAPIGraphsBuilderInterface { graphs: { [key: string]: OpenAPIGraphInterface; }; }