chore(infra): remove compatible code (#6833)

This commit is contained in:
EYHN
2024-05-08 09:06:33 +00:00
parent 87078ff706
commit 8d8bd49600
3 changed files with 1 additions and 52 deletions

View File

@@ -11,11 +11,6 @@ export type DocEvent =
docId: string;
update: Uint8Array;
clientId: string;
}
| {
type: 'LegacyClientUpdateCommitted';
docId: string;
update: Uint8Array;
};
export interface DocEventBus {

View File

@@ -254,13 +254,6 @@ export class DocEngineLocalPart {
});
}
},
LegacyClientUpdateCommitted: ({ docId, update }) => {
this.schedule({
type: 'save',
docId,
update,
});
},
};
handleDocUpdate = (update: Uint8Array, origin: any, doc: YDoc) => {