Skip to content

Commit 175c966

Browse files
Update Constructor type to fix #217
Fixes #217
1 parent 35805e2 commit 175c966

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/decorators.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {LitElement} from '../lit-element.js';
2525
import {PropertyDeclaration, UpdatingElement} from './updating-element.js';
2626

2727
export type Constructor<T> = {
28-
new (...args: unknown[]): T
28+
new (...args: any[]): T
2929
};
3030

3131
// From the TC39 Decorators proposal

0 commit comments

Comments
 (0)