next
Version:
The React Framework
12 lines (11 loc) • 310 B
TypeScript
import type { OverlayState } from '../../next-devtools/dev-overlay/shared';
export interface OverlayStateWithUrl {
url: string;
errorState: OverlayState | null;
}
export interface McpErrorStateResponse {
event: string;
requestId: string;
errorState: OverlayState | null;
url: string;
}