mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
export type SelectInterface = 'action-sheet' | 'popover' | 'alert';
|
|
|
|
export interface SelectChangeEventDetail {
|
|
value: any | any[] | undefined | null;
|
|
}
|