Fix single line doc comments

This commit is contained in:
barsdeveloper
2022-09-24 22:41:46 +02:00
parent 9a4d323a87
commit 7e55d41ec1
40 changed files with 2649 additions and 3008 deletions

View File

@@ -67,17 +67,13 @@ export default class IElement extends LitElement {
this.template.connectedCallback(this)
}
/**
* @param {Map} changedProperties
*/
/** @param {Map} changedProperties */
willUpdate(changedProperties) {
super.willUpdate(changedProperties)
this.template.willUpdate(this, changedProperties)
}
/**
* @param {Map} changedProperties
*/
/** @param {Map} changedProperties */
update(changedProperties) {
super.update(changedProperties)
this.template.update(this, changedProperties)
@@ -87,9 +83,7 @@ export default class IElement extends LitElement {
return this.template.render(this)
}
/**
* @param {Map} changedProperties
*/
/** @param {Map} changedProperties */
firstUpdated(changedProperties) {
super.firstUpdated(changedProperties)
this.template.firstUpdated(this, changedProperties)
@@ -115,9 +109,7 @@ export default class IElement extends LitElement {
}
}
/**
* @param {IElement} element
*/
/** @param {IElement} element */
isSameGraph(element) {
return this.blueprint && this.blueprint == element?.blueprint
}