| 4 | export type WindowWorkspaceMode = 'local' | 'remote' |
| 5 | |
| 6 | export interface VaultWatcherLike { |
| 7 | start(root: string, onEvent: (ev: VaultChangeEvent) => void): void |
| 8 | stop(): void |
| 9 | } |
| 10 | |
| 11 | interface WindowVaultSession { |
| 12 | mode: WindowWorkspaceMode |
no outgoing calls
no test coverage detected