remove "as any" from customElements.define() as it excludes widget from the documentation

not sure why it was added there in the first place for some widgets
This commit is contained in:
ralf 2024-06-17 09:58:25 +02:00
parent 25343974e8
commit 645889d899
4 changed files with 4 additions and 4 deletions

View File

@ -259,4 +259,4 @@ export class Et2VfsMime extends Et2ImageExpose
}
customElements.define("et2-vfs-mime", Et2VfsMime as any);
customElements.define("et2-vfs-mime", Et2VfsMime);

View File

@ -126,4 +126,4 @@ export class Et2DescriptionExpose extends ExposeMixin(Et2Description) implements
}
}
customElements.define("et2-description-expose", Et2DescriptionExpose as any);
customElements.define("et2-description-expose", Et2DescriptionExpose);

View File

@ -422,4 +422,4 @@ export class Et2Split extends Et2Widget(SlSplitPanel)
}
}
customElements.define("et2-split", Et2Split as any);
customElements.define("et2-split", Et2Split);