/** * This interface describes a handle to a dropdown menu. Instances are created by calling DropdownProvider.create(). */ export interface Dropdown { /** * This method shows this dropdown at a specified location with a specified width. * @param x * @param y * @param width */ showAt(x: number, y: number, width: number): void; /** * This method opens or closes a dropdown menu. * @param open */ setOpen(open: boolean): void; }