astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
14 lines (13 loc) • 498 B
TypeScript
export declare class DevToolbarRadioCheckbox extends HTMLElement {
private _radioStyle;
input: HTMLInputElement;
shadowRoot: ShadowRoot;
get radioStyle(): "red" | "purple" | "gray" | "green" | "yellow" | "blue";
set radioStyle(value: "red" | "purple" | "gray" | "green" | "yellow" | "blue");
static observedAttributes: string[];
constructor();
connectedCallback(): void;
updateStyle(): void;
updateInputState(): void;
attributeChangedCallback(): void;
}