chores(types): omit defaultValue from Node domAttributes #5418

This commit is contained in:
Shlomo Galle
2025-07-29 00:19:31 +03:00
parent c453ee3f74
commit 0c6f66ae67

View File

@@ -29,7 +29,14 @@ export type Node<
*/
domAttributes?: Omit<
HTMLAttributes<HTMLDivElement>,
'id' | 'style' | 'className' | 'draggable' | 'role' | 'aria-label' | keyof DOMAttributes<HTMLDivElement>
| 'id'
| 'style'
| 'className'
| 'draggable'
| 'role'
| 'aria-label'
| 'defaultValue'
| keyof DOMAttributes<HTMLDivElement>
>;
};