Files
ionic-framework/core/src/components/select/select-interface.ts
2018-12-28 20:38:24 +01:00

6 lines
155 B
TypeScript

export type SelectInterface = 'action-sheet' | 'popover' | 'alert';
export interface SelectChangeEventDetail {
value: any | any[] | undefined | null;
}