Files
standardnotes-app-web/packages/services/src/Domain/Device/DesktopManagerInterface.ts
2022-08-04 15:13:30 +02:00

8 lines
270 B
TypeScript

import { SNComponent } from '@standardnotes/models'
export interface DesktopManagerInterface {
syncComponentsInstallation(components: SNComponent[]): void
registerUpdateObserver(callback: (component: SNComponent) => void): () => void
getExtServerHost(): string
}