Interface UserAgentPart

A parsed system or extension part of the user agent. (A section within a parenthetical)

interface UserAgentPart {
    name: string;
    tokens: readonly string[];
    version: null | Version;
}

Hierarchy (view full)

Properties

Properties

name: string
tokens: readonly string[]
version: null | Version