mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Added a definitive-working definition for v2
This commit is contained in:
parent
e17180a6a8
commit
93e1ff52aa
255
index.d.ts
vendored
255
index.d.ts
vendored
@ -1,84 +1,66 @@
|
|||||||
// Type definitions for Bowser v2
|
// Type definitions for Bowser v2
|
||||||
// Project: https://github.com/lancedikson/bowser
|
// Project: https://github.com/lancedikson/bowser
|
||||||
// Definitions by: Alexander P. Cerutti <https://github.com/alexandercerutti>
|
// Definitions by: Alexander P. Cerutti <https://github.com/alexandercerutti>,
|
||||||
|
|
||||||
declare module "bowser" {
|
export = Bowser;
|
||||||
/**
|
export as namespace Bowser;
|
||||||
* Bowser class.
|
|
||||||
* Keep it simple as much as it can be.
|
|
||||||
* It's supposed to work with collections of {@link Parser} instances
|
|
||||||
* rather then solve one-instance problems.
|
|
||||||
* All the one-instance stuff is located in Parser class.
|
|
||||||
*/
|
|
||||||
class Bowser {
|
|
||||||
constructor();
|
|
||||||
|
|
||||||
/**
|
declare namespace Bowser {
|
||||||
* Creates a {@link module:parser:Parser} instance
|
|
||||||
*
|
|
||||||
* @param {String} UA UserAgent string
|
|
||||||
* @param {Boolean} [skipParsing=false] same as skipParsing for {@link Parser}
|
|
||||||
* @returns {Parser}
|
|
||||||
* @throws {Error} when UA is not a String
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const parser = Bowser.getParser(window.navigator.userAgent);
|
|
||||||
* const result = parser.getResult();
|
|
||||||
*/
|
|
||||||
static getParser(UA: string, skipParsing?: boolean): Parser
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a {@link Parser} instance and runs {@link Parser.getResult} immediately
|
|
||||||
*
|
|
||||||
* @param UA
|
|
||||||
* @return {ParsedResult}
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const result = Bowser.parse(window.navigator.userAgent);
|
|
||||||
*/
|
|
||||||
static parse(UA: string): Parser.ParsedResult
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The main class that arranges the whole parsing process.
|
* Creates a Parser instance
|
||||||
|
* @param {string} UA - User agent string
|
||||||
|
* @param {boolean} skipParsing
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
function getParser(UA: string, skipParsing?: boolean): Parser.Parser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a Parser instance and runs Parser.getResult immediately
|
||||||
|
* @param UA - User agent string
|
||||||
|
* @returns {Parser.ParsedResult}
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parse(UA: string): Parser.ParsedResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare namespace Parser {
|
||||||
class Parser {
|
class Parser {
|
||||||
constructor(UA: string, skipParsing?: boolean);
|
constructor(UA: string, skipParsing?: boolean);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get parsed browser object
|
* Get parsed browser object
|
||||||
* @return {Parser.BrowserDetails} Browser's details
|
* @return {BrowserDetails} Browser's details
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getBrowser(): Parser.BrowserDetails;
|
getBrowser(): BrowserDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get browser's name
|
* Get browser's name
|
||||||
* @return {String} Browser's name or an empty string
|
* @return {String} Browser's name or an empty string
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getBrowserName(): string;
|
getBrowserName(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get browser's version
|
* Get browser's version
|
||||||
* @return {String} version of browser
|
* @return {String} version of browser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getBrowserVersion(): string;
|
getBrowserVersion(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get OS
|
* Get OS
|
||||||
* @return {Parser.OSDetails} - OS Details
|
* @return {OSDetails} - OS Details
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* this.getOS(); // {
|
* this.getOS(); // {
|
||||||
* // name: 'macOS',
|
* // name: 'macOS',
|
||||||
* // version: '10.11.12',
|
* // version: '10.11.12',
|
||||||
* // }
|
* // }
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getOS(): Parser.OSDetails;
|
getOS(): OSDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get OS name
|
* Get OS name
|
||||||
@ -86,49 +68,49 @@ declare module "bowser" {
|
|||||||
* @return {String} name of the OS — macOS, Windows, Linux, etc.
|
* @return {String} name of the OS — macOS, Windows, Linux, etc.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getOSName(toLowerCase?: boolean): string;
|
getOSName(toLowerCase?: boolean): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get OS version
|
* Get OS version
|
||||||
* @return {String} full version with dots ('10.11.12', '5.6', etc)
|
* @return {String} full version with dots ('10.11.12', '5.6', etc)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getOSVersion(): string;
|
getOSVersion(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get parsed platform
|
* Get parsed platform
|
||||||
* @returns {Parser.PlatformDetails}
|
* @returns {PlatformDetails}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getPlatform(): Parser.PlatformDetails;
|
getPlatform(): PlatformDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get platform name
|
* Get platform name
|
||||||
* @param {boolean} toLowerCase
|
* @param {boolean} toLowerCase
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getPlatformType(toLowerCase?: boolean): string;
|
getPlatformType(toLowerCase?: boolean): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get parsed engine
|
* Get parsed engine
|
||||||
* @returns {Parser.EngineDetails}
|
* @returns {EngineDetails}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getEngine(): Parser.EngineDetails;
|
getEngine(): EngineDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get parsed result
|
* Get parsed result
|
||||||
* @return {Parser.ParsedResult}
|
* @return {ParsedResult}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getResult(): Parser.ParsedResult;
|
getResult(): ParsedResult;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get UserAgent string of current Parser instance
|
* Get UserAgent string of current Parser instance
|
||||||
* @return {String} User-Agent String of the current <Parser> object
|
* @return {String} User-Agent String of the current <Parser> object
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getUA(): string;
|
getUA(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Is anything? Check if the browser is called "anything",
|
* Is anything? Check if the browser is called "anything",
|
||||||
@ -137,46 +119,46 @@ declare module "bowser" {
|
|||||||
* @returns {Boolean}
|
* @returns {Boolean}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
is(anything: any): boolean;
|
is(anything: any): boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse full information about the browser
|
* Parse full information about the browser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
parse(): void;
|
parse(): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get parsed browser object
|
* Get parsed browser object
|
||||||
* @returns {Parser.BrowserDetails}
|
* @returns {BrowserDetails}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
parseBrowser(): Parser.BrowserDetails;
|
parseBrowser(): BrowserDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get parsed engine
|
* Get parsed engine
|
||||||
* @returns {Parser.EngineDetails}
|
* @returns {EngineDetails}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
parseEngine(): Parser.EngineDetails;
|
parseEngine(): EngineDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse OS and save it to this.parsedResult.os
|
* Parse OS and save it to this.parsedResult.os
|
||||||
* @returns {Parser.OSDetails}
|
* @returns {OSDetails}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
parseOS(): Parser.OSDetails;
|
parseOS(): OSDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get parsed platform
|
* Get parsed platform
|
||||||
* @returns {Parser.PlatformDetails}
|
* @returns {PlatformDetails}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
parsePlatform(): Parser.PlatformDetails;
|
parsePlatform(): PlatformDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if parsed browser matches certain conditions
|
* Check if parsed browser matches certain conditions
|
||||||
*
|
*
|
||||||
* @param {Parser.checkTree} checkTree It's one or two layered object,
|
* @param {checkTree} checkTree It's one or two layered object,
|
||||||
* which can include a platform or an OS on the first layer
|
* which can include a platform or an OS on the first layer
|
||||||
* and should have browsers specs on the bottom-laying layer
|
* and should have browsers specs on the bottom-laying layer
|
||||||
*
|
*
|
||||||
@ -192,7 +174,7 @@ declare module "bowser" {
|
|||||||
* if (browser.check({desktop: { chrome: '>118.01.1322' } }))
|
* if (browser.check({desktop: { chrome: '>118.01.1322' } }))
|
||||||
*/
|
*/
|
||||||
|
|
||||||
satisfies(checkTree: Parser.checkTree): boolean | undefined;
|
satisfies(checkTree: checkTree): boolean | undefined;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if any of the given values satifies `.is(anything)`
|
* Check if any of the given values satifies `.is(anything)`
|
||||||
@ -200,7 +182,7 @@ declare module "bowser" {
|
|||||||
* @returns {boolean} true if at least one condition is satisfied, false otherwise.
|
* @returns {boolean} true if at least one condition is satisfied, false otherwise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
some(anythings: string[]): boolean | undefined;
|
some(anythings: string[]): boolean | undefined;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test a UA string for a regexp
|
* Test a UA string for a regexp
|
||||||
@ -208,110 +190,35 @@ declare module "bowser" {
|
|||||||
* @returns {boolean} true if the regex matches the UA, false otherwise.
|
* @returns {boolean} true if the regex matches the UA, false otherwise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
test(regex: RegExp): boolean
|
test(regex: RegExp): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ParsedResult {
|
||||||
|
browser: BrowserDetails;
|
||||||
|
os: OSDetails;
|
||||||
|
platform: PlatformDetails;
|
||||||
|
engine: EngineDetails;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Details {
|
||||||
|
name?: string;
|
||||||
|
version?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface OSDetails extends Details {
|
||||||
|
versionName?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PlatformDetails {
|
||||||
|
type?: string;
|
||||||
|
vendor?: string;
|
||||||
|
model?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
type BrowserDetails = Details;
|
||||||
|
type EngineDetails = Details;
|
||||||
|
|
||||||
|
interface checkTree {
|
||||||
|
[key: string]: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Parser {
|
|
||||||
interface ParsedResult {
|
|
||||||
browser: Details;
|
|
||||||
os: OSDetails;
|
|
||||||
platform: PlatformDetails;
|
|
||||||
engine: Details;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface Details {
|
|
||||||
name?: string;
|
|
||||||
version?: Array<{index: number, input: string} | boolean | string | any>;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface OSDetails extends Details {
|
|
||||||
versionName?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface PlatformDetails {
|
|
||||||
type?: string;
|
|
||||||
vendor?: string;
|
|
||||||
model?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
type BrowserDetails = Details;
|
|
||||||
type EngineDetails = Details;
|
|
||||||
|
|
||||||
interface checkTree {
|
|
||||||
[key: string]: any;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Utils {
|
|
||||||
/**
|
|
||||||
* Get first matched item for a string
|
|
||||||
* @param {RegExp} regexp
|
|
||||||
* @param {String} ua
|
|
||||||
* @return {Array|{index: number, input: string}|*|boolean|string}
|
|
||||||
*/
|
|
||||||
static getFirstMatch(regexp: RegExp, ua: string): Array<{index: number, input: string} | boolean | string | any>;
|
|
||||||
/**
|
|
||||||
* Get second matched item for a string
|
|
||||||
* @param regexp
|
|
||||||
* @param {String} ua
|
|
||||||
* @return {Array|{index: number, input: string}|*|boolean|string}
|
|
||||||
*/
|
|
||||||
static getSecondMatch(regexp: RegExp, ua: string): Array<{index: number, input: string} | boolean | string | any>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Match a regexp and return a constant or undefined
|
|
||||||
* @param {RegExp} regexp
|
|
||||||
* @param {String} ua
|
|
||||||
* @param {*} _const Any const that will be returned if regexp matches the string
|
|
||||||
* @return {*}
|
|
||||||
*/
|
|
||||||
static matchAndReturnConst(regexp: RegExp, ua: string, _const: any): any | undefined;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves Windows commercial name from NT Core version name
|
|
||||||
* @param {string} version
|
|
||||||
* @returns {string | undefined}
|
|
||||||
*/
|
|
||||||
static getWindowsVersionName(version: string): string | undefined;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get version precisions count
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* getVersionPrecision("1.10.3") // 3
|
|
||||||
*
|
|
||||||
* @param {string} version
|
|
||||||
* @return {number}
|
|
||||||
*/
|
|
||||||
static getVersionPrecision(version: string): number
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Calculate browser version weight
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* compareVersions('1.10.2.1', '1.8.2.1.90') // 1
|
|
||||||
* compareVersions('1.010.2.1', '1.09.2.1.90'); // 1
|
|
||||||
* compareVersions('1.10.2.1', '1.10.2.1'); // 0
|
|
||||||
* compareVersions('1.10.2.1', '1.0800.2'); // -1
|
|
||||||
* compareVersions('1.10.2.1', '1.10', true); // 0
|
|
||||||
*
|
|
||||||
* @param {String} versionA versions versions to compare
|
|
||||||
* @param {String} versionB versions versions to compare
|
|
||||||
* @param {boolean} [isLoose] enable loose comparison
|
|
||||||
* @return {Number} comparison result: -1 when versionA is lower,
|
|
||||||
* 1 when versionA is bigger, 0 when both equal
|
|
||||||
*/
|
|
||||||
static compareVersions(versionA: string, versionB: string, isLoose?: boolean): number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array::map polyfill
|
|
||||||
*
|
|
||||||
* @param {Array} arr
|
|
||||||
* @param {Function} iterator
|
|
||||||
* @return {Array}
|
|
||||||
*/
|
|
||||||
static map(arr: Array<any>, iterator: Function): Array<any>
|
|
||||||
}
|
|
||||||
|
|
||||||
export = Bowser;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user