UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

16 lines (15 loc) 612 B
declare const styles: readonly ["purple", "gray", "red", "green", "yellow", "blue"]; type SelectStyle = (typeof styles)[number]; export declare class DevToolbarSelect extends HTMLElement { shadowRoot: ShadowRoot; element: HTMLSelectElement; _selectStyle: SelectStyle; get selectStyle(): "red" | "purple" | "gray" | "green" | "yellow" | "blue"; set selectStyle(value: "red" | "purple" | "gray" | "green" | "yellow" | "blue"); static observedAttributes: string[]; constructor(); connectedCallback(): void; attributeChangedCallback(): void; updateStyle(): void; } export {};