UNPKG

@mantine/hooks

Version:

A collection of 50+ hooks for state and UI management

13 lines (12 loc) 362 B
interface NetworkStatus { downlink?: number; downlinkMax?: number; effectiveType?: 'slow-2g' | '2g' | '3g' | '4g'; rtt?: number; saveData?: boolean; type?: 'bluetooth' | 'cellular' | 'ethernet' | 'wifi' | 'wimax' | 'none' | 'other' | 'unknown'; } export declare function useNetwork(): { online: boolean; } & NetworkStatus; export {};