6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
|
export interface IMyInputFieldChanged {
|
||
|
value: string;
|
||
|
dateFormat: string;
|
||
|
valid: boolean;
|
||
|
}
|