Add missing typescript property declaration

The method getEngineName exists both in the project and the official docs. It's just missing in the typescript declaration file.
pull/452/head
Ricard Fredin 4 years ago committed by Denis Demchenko
parent 53d54e248c
commit 5b11ac25ca

7
index.d.ts vendored

@ -105,6 +105,13 @@ declare namespace Bowser {
getEngine(): EngineDetails;
/**
* Get parsed engine's name
* @returns {String} Engine's name or an empty string
*/
getEngineName(): string;
/**
* Get parsed result
* @return {ParsedResult}

Loading…
Cancel
Save