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

12 lines
367 B
TypeScript
Raw Normal View History

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