return id node map when rebuild

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent b170c3de59
commit 0434129b00
5 changed files with 23 additions and 6 deletions

2
index.d.ts vendored
View File

@@ -2,7 +2,7 @@ import { serializedNodeWithId, idNodeMap } from './src/types';
export * from './src/types';
export function snapshot(n: Document): [serializedNodeWithId | null, idNodeMap];
export function rebuild(n: serializedNodeWithId): Node | null;
export function rebuild(n: serializedNodeWithId): [Node | null, idNodeMap];
export function serializeNodeWithId(
n: Node,
doc: Document,