@zerops/web-components 0.2.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Importing this module registers the <zerops-managed-service-diagram>
3
+ * custom element — the animated managed-services showcase (health checks,
4
+ * failover, backups, scaling). Fully static; no attributes or properties.
5
+ */
6
+ export interface ZeropsManagedServiceDiagramElement extends HTMLElement {}
7
+
8
+ declare global {
9
+ interface HTMLElementTagNameMap {
10
+ 'zerops-managed-service-diagram': ZeropsManagedServiceDiagramElement;
11
+ }
12
+ }