nestjs-graph
Version:
package for drawing dependency graph on HTML and serving it
14 lines (13 loc) • 517 B
TypeScript
import { HttpServer, INestApplication } from "@nestjs/common";
import { NestContainer } from "@nestjs/core";
import { GraphBuilder } from "./graph-builder";
export declare class GraphModule {
private readonly app;
private readonly modules;
container: NestContainer;
graphBuilder: GraphBuilder;
constructor(app: INestApplication);
buildHtml(htmlTemplate?: string, style?: string): string;
serve(path: string, httpAdapter: HttpServer, htmlTemplate?: string): void;
buildGraph(): void;
}