diff --git a/index.d.ts b/index.d.ts index 4ef7345..46c2230 100644 --- a/index.d.ts +++ b/index.d.ts @@ -22,14 +22,6 @@ declare namespace Bowser { function parse(UA: string): Parser.ParsedResult; - /** - * Constants exposed via bowser getters - */ - const BROWSER_MAP: Record; - const ENGINE_MAP: Record; - const OS_MAP: Record; - const PLATFORMS_MAP: Record; - namespace Parser { interface Parser { constructor(UA: string, skipParsing?: boolean): Parser.Parser; diff --git a/src/bowser.js b/src/bowser.js index 9b1449e..f79e6e0 100644 --- a/src/bowser.js +++ b/src/bowser.js @@ -74,10 +74,4 @@ class Bowser { } } -export { - BROWSER_MAP, - ENGINE_MAP, - OS_MAP, - PLATFORMS_MAP, -} from './constants.js'; export default Bowser;