nayota-show-sdk 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5,11 +5,13 @@ import alarmRecord from './api/alarmRecord'
|
|
|
5
5
|
import alarmProgress from './api/alarmProgress'
|
|
6
6
|
import systeminfo from './api/systeminfo'
|
|
7
7
|
import router from './api/router'
|
|
8
|
+
import departs from './api/departs'
|
|
8
9
|
const api = {
|
|
9
10
|
alarmRecord,
|
|
10
11
|
alarmProgress,
|
|
11
12
|
systeminfo,
|
|
12
|
-
router
|
|
13
|
+
router,
|
|
14
|
+
departs
|
|
13
15
|
}
|
|
14
16
|
|
|
15
17
|
export default { config: options => {
|