UNPKG

@lion/ui

Version:

A package of extendable web components

12 lines 405 B
/** * @typedef {HTMLSelectElement|HTMLElement & {modelValue:string}} DropdownElement */ /** * @param {DropdownElement} dropdownEl * @param {string} value */ export function mimicUserChangingDropdown(dropdownEl: DropdownElement, value: string): void; export type DropdownElement = HTMLSelectElement | (HTMLElement & { modelValue: string; }); //# sourceMappingURL=mimicUserChangingDropdown.d.ts.map