Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/bcherny/bowser into bcherny…
Browse files Browse the repository at this point in the history
…-master

# Conflicts:
#	package.json

merge #135, fix #69
  • Loading branch information
lancedikson committed May 7, 2016
2 parents 2a18d77 + f11d5e8 commit f2206e5
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"homepage": "https://github.com/ded/bowser",
"author": "Dustin Diaz <[email protected]> (http://dustindiaz.com)",
"main": "./src/bowser.js",
"typings": "./typings.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ded/bowser.git"
Expand Down
51 changes: 51 additions & 0 deletions typings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
export const name: string
export const osversion: string
export const version: string

// grades
export const a: boolean
export const b: boolean
export const c: boolean

// engines
export const android: boolean
export const bada: boolean
export const blackberry: boolean
export const chrome: boolean
export const firefox: boolean
export const gecko: boolean
export const ios: boolean
export const msie: boolean
export const msedge: boolean
export const opera: boolean
export const phantom: boolean
export const safari: boolean
export const sailfish: boolean
export const seamonkey: boolean
export const silk: boolean
export const tizen: boolean
export const webkit: boolean
export const webos: boolean

// operating systems
export const chromeos: boolean
export const iphone: boolean
export const ipad: boolean
export const ipod: boolean
export const firefoxos: boolean
export const linux: boolean
export const mac: boolean
export const touchpad: boolean
export const windows: boolean
export const windowsphone: boolean

export function test(browserList: Flag[]): boolean

export type Flag = "a" | "b" | "c" | "android" | "bada" | "blackberry"
| "chrome" | "firefox" | "gecko" | "ios" | "msie"
| "msedge" | "opera" | "phantom" | "safari"
| "sailfish" | "seamonkey" | "silk" | "tizen"
| "webkit" | "webos" | "chromeos" | "iphone"
| "ipad" | "ipod" | "firefoxos" | "linux" | "mac"
| "touchpad" | "windows" | "windowsphone"

0 comments on commit f2206e5

Please sign in to comment.