UNPKG

@zakarliuka/react-telegram-web-tools

Version:
14 lines (13 loc) 308 B
interface GyroscopeData { x: number; y: number; z: number; } declare const useGyroscope: () => { data: GyroscopeData | null; isTracking: boolean; startTracking: (refreshRate?: number) => boolean; stopTracking: () => void; isAvailable: boolean; }; export default useGyroscope;