|
1 | 1 | /**
|
2 |
| - * @typedef {import('unist').Parent} UnistParent |
3 |
| - * |
4 |
| - * @typedef {import('hast').Content} Content |
5 |
| - * @typedef {import('hast').Root} Root |
6 |
| - * |
7 | 2 | * @typedef {import('estree').Comment} Comment
|
8 | 3 | * @typedef {import('estree').Directive} Directive
|
9 | 4 | * @typedef {import('estree').ModuleDeclaration} ModuleDeclaration
|
|
16 | 11 | * @typedef {import('estree-jsx').JSXMemberExpression} JsxMemberExpression
|
17 | 12 | * @typedef {import('estree-jsx').JSXNamespacedName} JsxNamespacedName
|
18 | 13 | *
|
| 14 | + * @typedef {import('hast').Content} Content |
| 15 | + * @typedef {import('hast').Root} Root |
| 16 | + * |
| 17 | + * @typedef {import('mdast-util-mdx-expression').MdxFlowExpression} MdxFlowExpression |
| 18 | + * @typedef {import('mdast-util-mdx-expression').MdxTextExpression} MdxTextExpression |
| 19 | + * |
19 | 20 | * @typedef {import('mdast-util-mdx-jsx').MdxJsxAttribute} MdxJsxAttribute
|
20 | 21 | * @typedef {import('mdast-util-mdx-jsx').MdxJsxAttributeValueExpression} MdxJsxAttributeValueExpression
|
21 | 22 | * @typedef {import('mdast-util-mdx-jsx').MdxJsxExpressionAttribute} MdxJsxExpressionAttribute
|
22 | 23 | * @typedef {import('mdast-util-mdx-jsx').MdxJsxFlowElement} MdxJsxFlowElement
|
23 | 24 | * @typedef {import('mdast-util-mdx-jsx').MdxJsxTextElement} MdxJsxTextElement
|
24 | 25 | *
|
25 |
| - * @typedef {import('mdast-util-mdx-expression').MdxFlowExpression} MdxFlowExpression |
26 |
| - * @typedef {import('mdast-util-mdx-expression').MdxTextExpression} MdxTextExpression |
27 |
| - * |
28 | 26 | * @typedef {import('property-information').Schema} Schema
|
| 27 | + * |
| 28 | + * @typedef {import('unist').Parent} UnistParent |
29 | 29 | */
|
30 | 30 |
|
31 | 31 | /**
|
32 |
| - * @typedef {Root | Content | MdxJsxAttributeValueExpression | MdxJsxAttribute | MdxJsxExpressionAttribute | MdxJsxFlowElement | MdxJsxTextElement | MdxFlowExpression | MdxTextExpression} Node |
| 32 | + * @typedef {Content | MdxJsxAttributeValueExpression | MdxJsxAttribute | MdxJsxExpressionAttribute | MdxJsxFlowElement | MdxJsxTextElement | MdxFlowExpression | MdxTextExpression | Root} Node |
33 | 33 | * @typedef {Extract<Node, UnistParent>} Parent
|
34 | 34 | * @typedef {JsxElement['openingElement']['name']} JsxElementName
|
35 | 35 | * @typedef {JsxAttribute['name']} JsxAttributeName
|
|
0 commit comments