import { FormData } from './FormData.type'; /** * Type representing which fields in the form have been touched (interacted with) by the user. * Each property corresponds to a field in the FormData type. */ export type FormTouched = { [K in keyof FormData]?: boolean; }; //# sourceMappingURL=FormTouched.type.d.ts.map