Merge remote-tracking branch 'origin/feat/cloud-sync-saika' into feat/cloud-sync-saika

This commit is contained in:
alt0
2023-01-10 18:37:43 +08:00
3 changed files with 48 additions and 15 deletions

View File

@@ -203,4 +203,14 @@ export class BaseProvider {
): Promise<BlocksuiteWorkspace> {
return workspace;
}
/**
* merge one workspaces to another
* @param workspace
* @returns
*/
public async assign(to: BlocksuiteWorkspace, from: BlocksuiteWorkspace) {
from;
return to;
}
}