mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
export interface SelectPopoverOption {
|
|
text: string;
|
|
value: string;
|
|
disabled: boolean;
|
|
checked: boolean;
|
|
cssClass?: string | string[];
|
|
handler?: (value: any) => boolean | void | { [key: string]: any };
|
|
}
|