mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
21 lines
405 B
TypeScript
21 lines
405 B
TypeScript
export interface TextInputChangeEvent {
|
|
value: string | undefined;
|
|
}
|
|
|
|
export interface CheckedInputChangeEvent extends TextInputChangeEvent {
|
|
checked: boolean;
|
|
}
|
|
|
|
export interface InputChangeEvent {
|
|
value: any;
|
|
}
|
|
|
|
export interface SelectInputChangeEvent {
|
|
value: any | any[] | undefined | null;
|
|
text: string | undefined | null;
|
|
}
|
|
|
|
export interface StyleEvent {
|
|
[styleName: string]: boolean;
|
|
}
|