Interface Device

The device as described by a user agent string.

interface Device {
    model: undefined | string;
    type:
        | undefined
        | "console"
        | "embedded"
        | "mobile"
        | "tablet"
        | "smarttv"
        | "wearable";
    vendor: undefined | string;
}

Properties

Properties

model: undefined | string

The model of the device.

type:
    | undefined
    | "console"
    | "embedded"
    | "mobile"
    | "tablet"
    | "smarttv"
    | "wearable"

The type of device.

vendor: undefined | string

The vendor of the device.