Release 1.1.0

This commit is contained in:
Yanzhen Yu
2021-03-21 14:50:01 +08:00
parent 88f348a57b
commit 1192735af4
3 changed files with 4 additions and 2 deletions

2
typings/types.d.ts vendored
View File

@@ -42,6 +42,8 @@ export declare type commentNode = {
};
export declare type serializedNode = (documentNode | documentTypeNode | elementNode | textNode | cdataNode | commentNode) & {
rootId?: number;
isShadowHost?: boolean;
isShadow?: boolean;
};
export declare type serializedNodeWithId = serializedNode & {
id: number;