UNPKG

react-hooks-and-com

Version:

一个现代化的 React 自定义 Hooks 库,提供 20+ 个实用的自定义 Hooks。使用 TypeScript 和 Tailwind CSS 构建,完全类型安全。

10 lines 295 B
export interface WindowSize { width: number; height: number; } export interface UseWindowSizeOptions { debounceMs?: number; initialSize?: WindowSize; } export declare const useWindowSize: (options?: UseWindowSizeOptions) => WindowSize; //# sourceMappingURL=useWindowSize.d.ts.map