feat(core): add user list service for blocksuite (#10627)

This commit is contained in:
EYHN
2025-03-05 10:06:13 +00:00
parent 47d01f5f66
commit 201c3438ba
9 changed files with 73 additions and 33 deletions

View File

@@ -5,8 +5,8 @@ export type RemovedUserInfo = {
export type ExistedUserInfo = {
id: string;
name: string;
avatar: string;
name?: string | null;
avatar?: string | null;
removed?: false;
};