update
This commit is contained in:
19
dist_ts_web/elements/sz-platform-services-card.d.ts
vendored
Normal file
19
dist_ts_web/elements/sz-platform-services-card.d.ts
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user