From d74be6cc3860c87ab9324881b13a0758168ed451 Mon Sep 17 00:00:00 2001 From: Anthony Wikkerink Date: Sun, 10 Nov 2024 17:14:44 -0500 Subject: [PATCH] Update common.d.ts --- typings/common.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/common.d.ts b/typings/common.d.ts index 9741edda0d1..c09df036155 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 +}