knip
Version:
Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects
13 lines (12 loc) • 576 B
TypeScript
import type { GraphExplorer } from '../graph-explorer/explorer.ts';
import type { ModuleGraph } from '../types/module-graph.ts';
import type { MainOptions } from '../util/create-options.ts';
import type { WorkspaceFilePathFilter } from '../util/workspace-file-filter.ts';
interface TraceReporterOptions {
graph: ModuleGraph;
explorer: GraphExplorer;
options: MainOptions;
workspaceFilePathFilter: WorkspaceFilePathFilter;
}
declare const _default: ({ graph, explorer, options, workspaceFilePathFilter }: TraceReporterOptions) => void;
export default _default;