Files
skills-here-run-place/node_modules/astro/dist/runtime/client/dev-toolbar/ui-library/card.d.ts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

17 lines
660 B
TypeScript

declare const styles: readonly ["purple", "gray", "red", "green", "yellow", "blue"];
type CardStyle = (typeof styles)[number];
export declare class DevToolbarCard extends HTMLElement {
link?: string | undefined | null;
clickAction?: () => void | (() => Promise<void>);
shadowRoot: ShadowRoot;
_cardStyle: CardStyle;
get cardStyle(): "red" | "green" | "yellow" | "blue" | "gray" | "purple";
set cardStyle(value: "red" | "green" | "yellow" | "blue" | "gray" | "purple");
static observedAttributes: string[];
constructor();
attributeChangedCallback(): void;
updateStyle(): void;
connectedCallback(): void;
}
export {};