@loopback/context-explorer
Version:
Visualize context hierarchy, bindings, configurations, and dependencies
22 lines (21 loc) • 520 B
TypeScript
/**
* Options to configure Context Explorer
*/
export type ContextExplorerConfig = {
/**
* URL path where to expose the context explorer endpoints. Default: '/context-explorer'
*/
path?: string;
/**
* Set the flag to `false` to disable /inspect
*/
enableInspection?: boolean;
/**
* Set the flag to `false` to disable /graph
*/
enableSVG?: boolean;
/**
* Set the flag to `false` to disable /index.html and /dots
*/
enableD3Animation?: boolean;
};