Files

16 lines
612 B
TypeScript

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 {};