Skip to content

Commit

Permalink
Update common.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
awikkerink committed Nov 13, 2024
1 parent 8f85d30 commit 1bda15f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/common.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ declare global {
type LitElementClassType = LitElementConstructor & Pick<typeof LitElement, keyof typeof LitElement>;

// Used for mixins that use reactive element properties (updated, willUpdate, firstUpdated, connectedCallback, etc) but don't set properties or styles
type ReactiveElementConstructor = Constructor<ReactiveElement>;
type ReactiveElementConstructor = Constructor<ReactiveElement>;
// Used for mixins that use reactive element properties (updated, willUpdate, firstUpdated, connectedCallback, etc) and set properties or styles
type ReactiveElementClassType = ReactiveElementConstructor & Pick<typeof ReactiveElement, keyof typeof ReactiveElement>;
}
}

0 comments on commit 1bda15f

Please sign in to comment.