feat(core): add poster component (#457)

This commit is contained in:
rahim
2026-02-12 18:12:55 +11:00
committed by GitHub
parent b27b989fa1
commit c9ba1e1bfc
10 changed files with 409 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { PosterElement } from '../../ui/poster/poster-element';
customElements.define(PosterElement.tagName, PosterElement);
declare global {
interface HTMLElementTagNameMap {
[PosterElement.tagName]: PosterElement;
}
}