This repository was archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.d.ts
More file actions
57 lines (55 loc) · 1.31 KB
/
index.d.ts
File metadata and controls
57 lines (55 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
declare interface Browserizr {
isAndroid (): boolean;
isAndroid3 (): boolean;
isAndroid4 (): boolean;
isAndroid5 (): boolean;
isAndroid6 (): boolean;
isAndroid7 (): boolean;
isAndroid8 (): boolean;
isMeizuPhone (): boolean;
isMeizuNotePhone (): boolean;
isRedmiPhone (): boolean;
isRedmiNotePhone (): boolean;
isIPad (): boolean;
isIPod (): boolean;
isIPhone (): boolean;
isIPhone4 (): boolean;
isIPhone5 (): boolean;
isIPhone678 (): boolean;
isIPhone678plus (): boolean;
isIPhoneX (): boolean;
isIOS (): boolean;
isMac (): boolean;
isMacLike (): boolean;
isBlackBerry (): boolean;
isBlackBerry10 (): boolean;
isMoz (): boolean;
isOpera (): boolean;
isSafari (): boolean;
isChrome (): boolean;
isIE (): boolean;
isIE8 (): boolean;
isIE9 (): boolean;
isIE10 (): boolean;
isIE11 (): boolean;
isEdge (): boolean;
isEdgeIOS (): boolean;
isEdgeAndroid (): boolean;
isWindowsPhone (): boolean;
isWindows (): boolean;
isWindowsXP (): boolean;
isWindowsVista (): boolean;
isWindows7 (): boolean;
isWindows8 (): boolean;
isWindows10 (): boolean;
isLinux (): boolean;
isMobile (): boolean;
isDesktop (): boolean;
cssClasses (tests: string[], classPrefix: string = ''): string[];
}
declare const BrowserizrNS = {
prefixIs: 'is-',
prefixIsNot: 'is-not-',
detect (): Browserizr {}
}
export = BrowserizrNS;