This commit is contained in:
2026-01-03 02:44:25 +00:00
commit 4c0e498c4e
140 changed files with 245676 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { DeesElement, type TemplateResult } from '@design.estate/dees-element';
declare global {
interface HTMLElementTagNameMap {
'sz-platform-services-card': SzPlatformServicesCard;
}
}
export interface IPlatformService {
name: string;
status: string;
running: boolean;
url?: string;
}
export declare class SzPlatformServicesCard extends DeesElement {
static demo: () => TemplateResult<1>;
accessor services: IPlatformService[];
static styles: import("@design.estate/dees-element").CSSResult[];
render(): TemplateResult;
private handleServiceClick;
}