add data attribute to element when rebuild

This commit is contained in:
Yanzhen Yu
2018-10-12 15:56:02 +08:00
parent 1ddb0a3343
commit ffc2b01796
2 changed files with 7 additions and 18 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, idNodeMap];
export function rebuild(n: serializedNodeWithId): Node | null;
export function serializeNodeWithId(
n: Node,
doc: Document,