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

9 lines
204 B
TypeScript

export interface InputChangeEventDetail {
value: string | undefined | null;
}
export interface InputCustomEvent extends CustomEvent {
detail: InputChangeEventDetail;
target: HTMLIonInputElement;
}