instantcode
Version:
AI-powered web inspection tool - Pick elements and get instant AI assistance
11 lines (10 loc) • 443 B
TypeScript
/**
* Inspection Manager for mouse inspection mode handling
*/
export interface InspectionManager {
enterInspectionMode(): void;
exitInspectionMode(): void;
isInInspectionMode(): boolean;
destroy(): void;
}
export declare function createInspectionManager(onElementSelect?: (element: Element) => void, shouldIgnoreElement?: (element: Element) => boolean, isElementSelected?: (element: Element) => boolean): InspectionManager;