Interface UserAgent

interface UserAgent {
    device: UserAgentDevice;
    engine: UserAgentEngine;
    header: null | string;
    name: null | string;
    os: UserAgentOperatingSystem;
    type: null | string;
    version: null | string;
    version_major: null | string;
}

Properties

header: null | string
name: null | string
type: null | string
version: null | string
version_major: null | string