mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Merge pull request #382 from DarkPurple141/types-update
fix: update types to include constants in types.d.ts
This commit is contained in:
commit
406e39d2fe
8
index.d.ts
vendored
8
index.d.ts
vendored
@ -22,6 +22,14 @@ declare namespace Bowser {
|
|||||||
|
|
||||||
function parse(UA: string): Parser.ParsedResult;
|
function parse(UA: string): Parser.ParsedResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constants exposed via bowser getters
|
||||||
|
*/
|
||||||
|
const BROWSER_MAP: Record<string, string>;
|
||||||
|
const ENGINE_MAP: Record<string, string>;
|
||||||
|
const OS_MAP: Record<string, string>;
|
||||||
|
const PLATFORMS_MAP: Record<string, string>;
|
||||||
|
|
||||||
namespace Parser {
|
namespace Parser {
|
||||||
interface Parser {
|
interface Parser {
|
||||||
constructor(UA: string, skipParsing?: boolean): Parser.Parser;
|
constructor(UA: string, skipParsing?: boolean): Parser.Parser;
|
||||||
|
@ -74,4 +74,10 @@ class Bowser {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
BROWSER_MAP,
|
||||||
|
ENGINE_MAP,
|
||||||
|
OS_MAP,
|
||||||
|
PLATFORMS_MAP,
|
||||||
|
} from './constants.js';
|
||||||
export default Bowser;
|
export default Bowser;
|
||||||
|
Loading…
Reference in New Issue
Block a user