()
| 83 | const LIST_NOTES_STREAM_CHUNK_SIZE = 250 |
| 84 | |
| 85 | async function refreshRemoteWorkspaceInfo(): Promise<RemoteWorkspaceInfo | null> { |
| 86 | try { |
| 87 | remoteWorkspaceInfo = await ipcRenderer.invoke(IPC.WORKSPACE_GET_INFO) |
| 88 | } catch { |
| 89 | remoteWorkspaceInfo = null |
| 90 | } |
| 91 | return remoteWorkspaceInfo |
| 92 | } |
| 93 | |
| 94 | void refreshRemoteWorkspaceInfo() |
| 95 |