zy-react-library/hooks/useIdle/index.d.ts

12 lines
366 B
TypeScript
Raw Normal View History

2025-12-12 16:22:49 +08:00
export interface UseIdleOptions {
/** 空闲超时时间(毫秒),默认值 10000 */
timeout?: number;
2025-12-12 16:45:23 +08:00
/** 监听的事件列表,默认值 ["mousemove", "mousedown", "resize", "keydown", "touchstart", "wheel"] */
2025-12-12 16:22:49 +08:00
events?: string[];
}
/**
*
*/
export default function useIdle(options?: UseIdleOptions): boolean;