Skip to content

Commit 4e7720d

Browse files
committed
chore: remove ununsed code
1 parent 1fdcd57 commit 4e7720d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

packages/core/src/jsx/jsx-attribute-value.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import { match, P } from "ts-pattern";
1212
*/
1313
export type AttributeValue =
1414
| { kind: "boolean"; toStatic(): true } // Boolean attributes (e.g., disabled)
15-
// | { kind: "default"; toStatic(): unit | string } // Default attribute values
1615
| { kind: "element"; node: TSESTree.JSXElement; toStatic(): unknown } // JSX element as value (e.g., <Component element=<JSXElement /> />)
1716
| { kind: "literal"; node: TSESTree.Literal; toStatic(): TSESTree.Literal["value"] } // Literal values
1817
| { kind: "expression"; node: TSESTree.JSXExpressionContainer["expression"]; toStatic(): unknown } // Expression attributes (e.g., {value}, {...props})

0 commit comments

Comments
 (0)