8 lines
270 B
TypeScript
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
|
|
}
|