chore: Enforce interfaces for object types (#2544)
This commit is contained in:
committed by
dermotduffy
parent
c8e7fdd808
commit
a87e5b8eeb
@@ -1,3 +1,5 @@
|
||||
import { LitElement } from 'lit';
|
||||
|
||||
export type ConstructableLitElement = { new (...args: unknown[]): LitElement };
|
||||
export interface ConstructableLitElement {
|
||||
new (...args: unknown[]): LitElement;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user