UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

15 lines (13 loc) 337 B
declare function isSlowConnection(): boolean | undefined; declare global { interface Navigator { connection: { downlink: number; saveData: boolean; effectiveType: string; rtt: number; onchange?: (data: any) => void; }; } } export { isSlowConnection };