vite-plugin-entry-shaking-debugger
Version:
Debugger for vite-plugin-entry-shaking
15 lines (11 loc) • 404 B
text/typescript
import type { ChannelStore } from '#types';
import type { MetricsBlockProps } from '@components/MetricsBlock/MetricsBlock.types';
export type DiagnosticsProps = MetricsBlockProps;
export type DiagnosticsOverviewProps = {
/** Diagnostics. */
diagnostics: ChannelStore['diagnostics'];
};
export type DiagnosticsOverviewEvents = {
/** Redirects to file's diagnostics. */
view: [path: string];
};