Initial commit
This commit is contained in:
16
node_modules/astro/dist/runtime/client/dev-toolbar/ui-library/card.d.ts
generated
vendored
Normal file
16
node_modules/astro/dist/runtime/client/dev-toolbar/ui-library/card.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
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 {};
|
||||
Reference in New Issue
Block a user