mx-ui-components
Version:
mobius ui library
14 lines (13 loc) • 434 B
TypeScript
declare class MyDropdown extends HTMLElement {
private state;
name: string;
options: Array<string>;
static get observedAttributes(): string[];
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
constructor();
connectedCallback(): void;
handleDropdownState(): void;
handleOptionState(event: Event): void;
render(): void;
}
export default MyDropdown;