mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2025-01-19 17:28:47 +01:00
37 lines
760 B
JavaScript
37 lines
760 B
JavaScript
import path from 'node:path'
|
|
|
|
import * as configs from '$electron/configs/index.js'
|
|
import appLog from '$electron/helpers/log.js'
|
|
import store from '$electron/helpers/store.js'
|
|
import adb from './adb/index.js'
|
|
import electron from './electron/index.js'
|
|
import gnirehtet from './gnirehtet/index.js'
|
|
import scrcpy from './scrcpy/index.js'
|
|
import search from './search/index.js'
|
|
import '$electron/helpers/console.js'
|
|
|
|
export default {
|
|
init(expose) {
|
|
adb.init()
|
|
|
|
expose('nodePath', path)
|
|
|
|
expose('appLog', appLog)
|
|
|
|
expose('appStore', store)
|
|
|
|
expose('electron', {
|
|
...electron(),
|
|
configs,
|
|
})
|
|
|
|
expose('adb', adb)
|
|
|
|
expose('scrcpy', scrcpy)
|
|
|
|
expose('gnirehtet', gnirehtet)
|
|
|
|
expose('findInPageModal', search)
|
|
},
|
|
}
|