interface BrowserTest {
    match: RegExp;
    message: string;
    minimum: string | number;
}

Properties

Properties

match: RegExp

A regular expression to match the browser against the user agent string.

message: string

A message to display if the user's browser version does not meet the minimum.

minimum: string | number

The minimum supported version for this browser.