File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ export type AstroChild =
2323 | JSXExpression
2424 | JSXText
2525 | AstroHTMLComment
26+ | AstroRawText
2627export type AstroParentNode = JSXElement | JSXFragment | AstroFragment
2728
2829/** Node of Astro program root */
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import type { TSESTree as ES } from "@typescript-eslint/types"
22import type {
33 AstroFragment ,
44 AstroHTMLComment ,
5+ AstroRawText ,
56 AstroShorthandAttribute ,
67 AstroTemplateLiteralAttribute ,
78} from "./astro"
@@ -29,6 +30,7 @@ export type JSXChild =
2930 | JSXExpression
3031 | JSXText
3132 | AstroHTMLComment
33+ | AstroRawText
3234export type JSXParentNode = JSXElement | JSXFragment | AstroFragment
3335/* --- Tags --- */
3436export interface JSXElement extends BaseNode {
You can’t perform that action at this time.
0 commit comments