Skip to content

Commit

Permalink
Update common.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
awikkerink authored Nov 14, 2024
1 parent b4a027b commit e841e4f
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 e841e4f

Please sign in to comment.