Files
ionic-framework/core/src/utils/input-interface.ts
Manu Mtz.-Almeida f8eafa7a21 fix(all): lint errors
2018-09-24 18:20:52 +02:00

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;
}