openapi-graph-types
Version:
The types of the openapi-graph library.
8 lines (7 loc) • 346 B
TypeScript
import { OpenAPIGraphLibConfigInterface, OpenAPIGraphsBuilderInterface } from ".";
export declare type OpenAPIGraphsConstructor = new (path: string, options: OpenAPIGraphLibConfigInterface) => OpenAPIGraphsInterface;
export interface OpenAPIGraphsInterface {
builder: OpenAPIGraphsBuilderInterface;
rootPath: string;
build(): void;
}