fix(input): fix text type for select change event

This commit is contained in:
mhartington
2018-09-21 16:17:33 -04:00
parent 2a040e0a11
commit 694b6a8795

View File

@ -12,7 +12,7 @@ export interface InputChangeEvent {
export interface SelectInputChangeEvent { export interface SelectInputChangeEvent {
value: any | any[] | undefined; value: any | any[] | undefined;
text: string; text: string | undefined;
} }
export interface StyleEvent { export interface StyleEvent {