chore(editor): move legacy doc collection to test workspace (#9507)

This commit is contained in:
Saul-Mirone
2025-01-03 09:40:33 +00:00
parent cfd64f1fa5
commit 51b109ee53
26 changed files with 128 additions and 193 deletions

View File

@@ -8,13 +8,6 @@ export function createAutoIncrementIdGenerator(): IdGenerator {
return () => (i++).toString();
}
export function createAutoIncrementIdGeneratorByClientId(
clientId: number
): IdGenerator {
let i = 0;
return () => `${clientId}:${i++}`;
}
export const uuidv4: IdGenerator = () => {
return uuidv4IdGenerator();
};