UNPKG

@railzai/railz-visualizations

Version:
18 lines (17 loc) 438 B
import { EventEmitter } from '../../stencil-public-runtime'; import { RVSelectStyle } from '../../types'; export declare class Select { /** * The items to be listed */ readonly items: string[]; /** * Position of the Select text when opened */ readonly selectStyle?: RVSelectStyle; selectedItem: EventEmitter<number>; private selectedIndex; private open; private selectedItemHandler; render(): HTMLElement; }