-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
42 lines (35 loc) · 952 Bytes
/
Copy pathindex.js
File metadata and controls
42 lines (35 loc) · 952 Bytes
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
/**
* @module 设备方向
*/
import DeviceOrientation from './libs/orientation';
export * from './libs/orientation';
export {
DeviceOrientation
}
/**
* @module 全屏模式_主要用于隐藏安卓的虚拟底部导航栏以及iOS的HomeIndicator
*/
import {toggleFullscreen,toggleImmerseStatusBar} from './libs/realfullscreen'
export {toggleImmerseStatusBar,toggleFullscreen};
const RealFullscreen = {
toggleImmerseStatusBar,
toggleFullscreen
};
export {RealFullscreen};
/**
* @module 全屏模式_主要用于隐藏安卓的虚拟底部导航栏以及iOS的HomeIndicator
*/
export {default as SystemSetting} from './libs/systemsetting';
/**
* @module 视频下载
*/
export * from './libs/hlsserver';
/**
* @module 视频下载
*/
export {default as cacheStore} from './src/cacheStore';
export * from './src/cacheStore';
export {default as CacheMountPoint} from './src/cacheMountPoint';
/**
* @module 弹幕组件
*/