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

14 lines
498 B
TypeScript

export declare class DevToolbarRadioCheckbox extends HTMLElement {
private _radioStyle;
input: HTMLInputElement;
shadowRoot: ShadowRoot;
get radioStyle(): "red" | "green" | "yellow" | "blue" | "gray" | "purple";
set radioStyle(value: "red" | "green" | "yellow" | "blue" | "gray" | "purple");
static observedAttributes: string[];
constructor();
connectedCallback(): void;
updateStyle(): void;
updateInputState(): void;
attributeChangedCallback(): void;
}