fix: update types to include constants

pull/382/head
Alex Hinds 4 years ago
parent ea8d9c5427
commit 9c3fc30c81

8
index.d.ts vendored

@ -22,6 +22,14 @@ declare namespace Bowser {
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 {
interface Parser {
constructor(UA: string, skipParsing?: boolean): Parser.Parser;

@ -5,7 +5,7 @@
* MIT License | (c) Denis Demchenko 2015-2019
*/
import Parser from './parser.js';
import {
export {
BROWSER_MAP,
ENGINE_MAP,
OS_MAP,

Loading…
Cancel
Save