mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-15 03:07:41 +01:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
import path from 'node:path'
|
|
import electron from './electron/index.js'
|
|
import adbkit from './adbkit/index.js'
|
|
import scrcpy from './scrcpy/index.js'
|
|
|
|
export default {
|
|
init(expose) {
|
|
expose('nodePath', path)
|
|
expose('electron', electron())
|
|
expose('adbkit', adbkit())
|
|
expose('scrcpy', scrcpy())
|
|
},
|
|
}
|