UNPKG
artwork-react-native
Version:
latest (0.0.0-alpha.16)
0.0.0-alpha.16
0.0.0-alpha.15
0.0.0-alpha.14
0.0.0-alpha.13
0.0.0-alpha.12
0.0.0-alpha.10
0.0.0-alpha.9
0.0.0-alpha.8
0.0.0-alpha.7
0.0.0-alpha.6
0.0.0-alpha.5
0.0.0-alpha.4
0.0.0-alpha.3
0.0.0-alpha.2
0.0.0-alpha.1
0.0.0-alpha.0
0.0.0-6
0.0.0-5
0.0.0-4
0.0.0-3
0.0.0-2
artwork design master for react-native
artwork-react-native
/
lib
/
_util
/
media-device.d.ts
11 lines
(10 loc)
•
308 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 设备的宽、高及基本信息 */
export
default
class
MediaDevice
{
static
readonly
width
:
number
;
static
readonly
height
:
number
;
static
readonly
isIOS
:
boolean
;
static
readonly
isAndroid
:
boolean
;
static
readonly
platform
:
"ios"
|
"android"
|
"macos"
|
"windows"
|
"web"
; }