11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
|
import { SelectItem } from './selectitem';
|
||
|
/**
|
||
|
* Represents a group of select items.
|
||
|
* @group Interface
|
||
|
*/
|
||
|
export interface SelectItemGroup {
|
||
|
label: string;
|
||
|
value?: any;
|
||
|
items: SelectItem[];
|
||
|
}
|