diff --git a/typings/common.d.ts b/typings/common.d.ts index 9741edda0d..c09df03615 100644 --- a/typings/common.d.ts +++ b/typings/common.d.ts @@ -8,7 +8,7 @@ declare global { type LitElementClassType = LitElementConstructor & Pick; // Used for mixins that use reactive element properties (updated, willUpdate, firstUpdated, connectedCallback, etc) but don't set properties or styles - type ReactiveElementConstructor = Constructor; + type ReactiveElementConstructor = Constructor; // Used for mixins that use reactive element properties (updated, willUpdate, firstUpdated, connectedCallback, etc) and set properties or styles type ReactiveElementClassType = ReactiveElementConstructor & Pick; -} \ No newline at end of file +}