UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

12 lines (11 loc) 234 B
export interface IDropdownInputOption { key: string; text: string; type?: DropdownOptionType; disabled?: boolean; } export declare enum DropdownOptionType { Normal = 0, Divider = 1, Header = 2 }