mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
declare global {
|
|
var __NUXT_VERSION__: string
|
|
var __NUXT_PREPATHS__: string[] | string | undefined
|
|
var __NUXT_PATHS__: string[] | string | undefined
|
|
|
|
interface Navigator {
|
|
connection?: {
|
|
type: 'bluetooth' | 'cellular' | 'ethernet' | 'none' | 'wifi' | 'wimax' | 'other' | 'unknown'
|
|
effectiveType: 'slow-2g' | '2g' | '3g' | '4g'
|
|
}
|
|
}
|
|
}
|
|
|
|
export {}
|