forked from appium/appium-base-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
35 lines (22 loc) · 945 Bytes
/
index.js
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
// transpile:main
// BaseDriver exports
import BaseDriver from './lib/basedriver/driver';
import DeviceSettings from './lib/basedriver/device-settings';
export { BaseDriver, DeviceSettings };
export default BaseDriver;
// MJSONWP exports
import { MobileJsonWireProtocol, routeConfiguringFunction, errors, isErrorType,
errorFromCode, ALL_COMMANDS, NO_SESSION_ID_COMMANDS,
isSessionCommand } from './lib/mjsonwp';
export { MobileJsonWireProtocol, routeConfiguringFunction, errors, isErrorType,
errorFromCode, ALL_COMMANDS, NO_SESSION_ID_COMMANDS, isSessionCommand };
// Express exports
import { server } from './lib/express/server';
export { server };
// jsonwp-proxy exports
import JWProxy from './lib/jsonwp-proxy/proxy';
export { JWProxy };
// jsonwp-status exports
import { codes, getSummaryByCode } from './lib/jsonwp-status/status';
const statusCodes = codes;
export {statusCodes, getSummaryByCode };