mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 22:30:56 +00:00
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
export declare function useMouse<T extends HTMLElement = any>(options?: {
|
|
resetOnExit?: boolean;
|
|
}): {
|
|
x: number;
|
|
y: number;
|
|
ref: import("react").RefObject<T | null>;
|
|
};
|