mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00

resolves #22925 BREAKING CHANGE: The `RadioChangeEventDetail` interface has been removed in favor of `RadioGroupChangeEventDetail`.
13 lines
356 B
TypeScript
13 lines
356 B
TypeScript
export type SelectInterface = 'action-sheet' | 'popover' | 'alert';
|
|
|
|
export type SelectCompareFn = (currentValue: any, compareValue: any) => boolean;
|
|
|
|
export interface SelectChangeEventDetail<T = any> {
|
|
value: T;
|
|
}
|
|
|
|
export interface SelectCustomEvent<T = any> extends CustomEvent {
|
|
detail: SelectChangeEventDetail<T>;
|
|
target: HTMLIonSelectElement;
|
|
}
|