Interface BrowserInfoResult

Represents the result of browser information retrieval.

interface BrowserInfoResult {
    browserName: string;
    osName: string;
    osVersion: null | number;
    platform: string;
}

Properties

browserName: string

The name of the browser (e.g., "Chrome", "Firefox", "Safari").

osName: string

The operating system name (e.g., "Windows", "Linux", "macOS").

osVersion: null | number

The operating system version. May be null if unknown.

platform: string

The platform of the browser (e.g., "Win32", "Linux", "MacIntel").