This commit is contained in:
Russell Bicknell 2022-04-27 15:20:48 -07:00
parent 2445554f4f
commit 178dfa5e06

2
interfaces.d.ts vendored
View File

@ -26,7 +26,7 @@ export interface PolymerInit {
extends?: string;
properties?: PolymerElementProperties;
observers?: string[];
_template?: HTMLTemplateElement;
_template?: HTMLTemplateElement|(() => HTMLTemplateElement);
hostAttributes?: {[key: string]: any};
listeners?: {[key: string]: string};
behaviors?: BehaviorInit | BehaviorInit[];