UNPKG

rsuite

Version:

A suite of react components

13 lines (12 loc) 369 B
import { RSUITE_PICKER_TYPE } from '../symbols'; import type { ListHandle } from '../Windowing'; export interface PickerHandle { type?: typeof RSUITE_PICKER_TYPE; root: HTMLElement | null; list?: ListHandle; overlay?: HTMLElement | null; target?: HTMLElement | null; updatePosition?: () => void; open?: () => void; close?: () => void; }