next-debug-suite
Version:
Ultimate Next.js AI-Powered Debug Suite with visual interface and error DNA system
16 lines (15 loc) • 487 B
TypeScript
import React from 'react';
import type { DebugConfig, DebugData } from '../types/debug';
interface DebugContextValue {
config: DebugConfig;
data: DebugData;
clearData: (tab: string) => void;
exportData: (tab: string) => any;
}
export declare const useDebugContext: () => DebugContextValue;
interface DebugSuiteProviderProps {
children: React.ReactNode;
config: DebugConfig;
}
export declare const DebugSuiteProvider: React.FC<DebugSuiteProviderProps>;
export {};