1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00

Add a missing type definition

This commit is contained in:
정유진 2018-01-03 18:12:49 +09:00 committed by Denis Demchenko
parent 03d690c5ee
commit 05d536ea0c

3
typings.d.ts vendored
View File

@ -83,6 +83,9 @@ declare namespace bowser {
name: string;
/** Version number for the browser. E.g. '32.0' */
version: string|number;
/** Name for this operating system. E.g. 'macOS' */
osname: string;
/** Version number for this operating system. E.g. '10.12.6' */
osversion: string|number;
}