Skip to content

Commit ee26b0b

Browse files
authored
Update packages/@lwc/engine-dom/src/apis/create-element.ts
1 parent 4639d29 commit ee26b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@lwc/engine-dom/src/apis/create-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ if (process.env.NODE_ENV !== 'production') {
106106
* just the public properties.
107107
*/
108108
type ComponentClassProperties<T> = T extends {
109-
__lwc_public_property_types__?: infer Props extends object;
109+
readonly __lwc_public_property_types__?: infer Props extends object;
110110
}
111111
? Props
112112
: Omit<T, keyof LightningElement>;

0 commit comments

Comments
 (0)