UNPKG

bb-inline-editor

Version:

Follow me [![twitter](https://img.shields.io/twitter/follow/carlillo.svg?style=social&label=%20carlillo)](https://twitter.com/carlillo) to be notified about new releases.

11 lines (9 loc) 263 B
export interface SelectOption { [key: string]: any; } export interface SelectOptionWithChildren extends SelectOption { children?: SelectOption[]; } export interface SelectOptions { text: string; value: string; data: SelectOptionWithChildren[]; }