Interface UserAgentInfo

A parsed user agent.

interface UserAgentInfo {
    browser: null | UaSystemInfo;
    browserLike: null | UaSystemInfo;
    device: null | UaDeviceInfo;
    os: null | UaSystemInfo;
    osLike: null | UaSystemInfo;
    userAgent: string;
}

Properties

browser: null | UaSystemInfo
browserLike: null | UaSystemInfo
device: null | UaDeviceInfo
os: null | UaSystemInfo
osLike: null | UaSystemInfo
userAgent: string