Skip to content

Commit c066774

Browse files
committed
Update Constructor type to fix #217
Fixes #217
1 parent 78e19f4 commit c066774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/decorators.ts

Lines changed: 1 addition & 1 deletion
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)