mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2025-02-07 22:51:21 +01:00
14 lines
321 B
JavaScript
14 lines
321 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 {
|
|
install(expose) {
|
|
expose('nodePath', path)
|
|
expose('electron', electron())
|
|
expose('adbkit', adbkit())
|
|
expose('scrcpy', scrcpy())
|
|
},
|
|
}
|