File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -58,18 +58,18 @@ export interface IElementInternals extends IAom {
58
58
59
59
export interface ICustomElement extends HTMLElement {
60
60
constructor : ( ...args : any [ ] ) => HTMLElement ;
61
- attributeChangedCallback ?: (
61
+ attributeChangedCallback (
62
62
name : string ,
63
63
oldValue : any ,
64
64
newValue : any
65
- ) => void ;
66
- connectedCallback ?: ( ) => void ;
67
- disconnectedCallback ?: ( ) => void ;
68
- attachedCallback ?: ( ) => void ;
69
- attachInternals : ( ) => ElementInternals ;
70
- formDisabledCallback ?: ( isDisabled : boolean ) => void ;
71
- formResetCallback ?: ( ) => void ;
72
- formAssociatedCallback ?: ( form : HTMLFormElement ) => void ;
65
+ ) : void ;
66
+ connectedCallback ( ) : void ;
67
+ disconnectedCallback ( ) : void ;
68
+ attachedCallback ( ) : void ;
69
+ attachInternals ( ) : ElementInternals ;
70
+ formDisabledCallback ( isDisabled : boolean ) : void ;
71
+ formResetCallback ( ) : void ;
72
+ formAssociatedCallback ( form : HTMLFormElement ) : void ;
73
73
disabled ?: boolean ;
74
74
}
75
75
You can’t perform that action at this time.
0 commit comments