13 lines
221 B
TypeScript
13 lines
221 B
TypeScript
|
/**
|
||
|
* Represents an option item.
|
||
|
* @group Interface
|
||
|
*/
|
||
|
export interface SelectItem<T = any> {
|
||
|
label?: string;
|
||
|
value: T;
|
||
|
styleClass?: string;
|
||
|
icon?: string;
|
||
|
title?: string;
|
||
|
disabled?: boolean;
|
||
|
}
|