Skip to content

Commit 18b42a2

Browse files
committed
fix missing optional
1 parent d4c0694 commit 18b42a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jscomp/others/jsxDOM.res

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ type domProps = {
373373
baseProfile?: string,
374374
baselineShift?: string,
375375
bbox?: string,
376-
begin: string,
376+
begin?: string,
377377
@deprecated("Please use begin")
378378
begin_?: string,
379379
bias?: string,
@@ -553,7 +553,7 @@ type domProps = {
553553
textDecoration?: string,
554554
textLength?: string,
555555
textRendering?: string,
556-
to: string,
556+
to?: string,
557557
@deprecated("Please use to")
558558
to_?: string,
559559
transform?: string,

0 commit comments

Comments
 (0)