import { ChangeSourceType } from './change-source.type'; import { FormParameters } from './form-parameters.type'; export interface DocumentChangedInfo { documentId: string; fieldName: string; oldValue?: any; newValue: any; formParameters?: FormParameters; isInitValue?: boolean; sourceType?: ChangeSourceType; sourceEvent?: ChangeSourceType; changedFields?: any[]; controlName?: string; shouldCompareValues?: boolean; }