25 lines
591 B
TypeScript
25 lines
591 B
TypeScript
/**
|
|
* Hooks 模块统一导出
|
|
*/
|
|
|
|
// Debounce
|
|
export { useDebounce, useDebounceValue } from './useDebounce';
|
|
|
|
// Throttle
|
|
export { useThrottle } from './useThrottle';
|
|
|
|
// Haptics
|
|
export { useHaptics } from './useHaptics';
|
|
|
|
// Request
|
|
export { useRequest } from './useRequest';
|
|
|
|
// Theme
|
|
export { useColorScheme, useThemeColor, useThemeColors, useThemeInfo } from './useTheme';
|
|
|
|
// Client-only value (for SSR/Web compatibility)
|
|
export { useClientOnlyValue } from './useClientOnlyValue';
|
|
|
|
// Game Menus
|
|
export { useGameMainMenus, useMenuDataLoaded, useGameMenuTabs } from './useGameMenus';
|