mirror of
https://github.com/standardnotes/app
synced 2026-01-16 19:04:58 -05:00
17 lines
444 B
JavaScript
17 lines
444 B
JavaScript
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
class WebProcessDeviceInterface {
|
|
constructor(messageSender) {
|
|
this.appVersion = '1.2.3'
|
|
this.environment = 3
|
|
this.databases = []
|
|
this.messageSender = messageSender
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
setApplication() {}
|
|
|
|
sendMessage(functionName, args) {
|
|
return this.messageSender.sendMessage(functionName, args)
|
|
}
|
|
}
|