mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-12-01 02:27:18 +01:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
import { createProxy } from '$electron/helpers/index'
|
|
import log from 'electron-log/main.js'
|
|
|
|
const levels = Object.keys(log.functions)
|
|
|
|
const functions = () => ({ ...createProxy(log, levels) })
|
|
|
|
export default {
|
|
levels,
|
|
functions: functions(),
|
|
...functions(),
|
|
}
|