Files
ionic-framework/core/src/components/select-popover/select-popover-interface.ts
2022-04-04 11:12:53 -04:00

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 };
}