Skip to content

Commit 87b2a82

Browse files
committed
perf: types content
1 parent 9676edd commit 87b2a82

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

types/index.d.ts

+9-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,17 @@ export type Options = {
1414
directives?: Directive[];
1515
} & ParserOptions;
1616

17-
export type Node = NodeText | NodeTag;
17+
export type Tag = string | boolean;
18+
export type Attributes = Record<string, string>;
19+
export type Content = NodeText | Node[];
20+
1821
export type NodeText = string;
1922
export type NodeTag = {
20-
tag?: string | boolean;
23+
tag?: Tag;
2124
attrs?: Attributes;
22-
content?: Node[];
25+
content?: Content;
2326
};
2427

25-
export type Attributes = Record<string, string>;
28+
export type Node = NodeText | NodeTag;
29+
30+

0 commit comments

Comments
 (0)