Files
ionic-framework/core/src/components/select-popover/select-popover-interface.ts

10 lines
172 B
TypeScript

export interface SelectPopoverOption {
text: string;
value: string;
disabled: boolean;
checked: boolean;
cssClass?: string | string[];
handler?: () => void;
}