1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import ArrayStrategy from '../Constants/ArrayStrategy';
import IMergeErrorMessage from './IMergeMessage';
interface IConfig {
deep?: boolean;
useReferenceIfTargetUnset?: boolean;
useReferenceIfArray?: boolean;
includeReadOnly?: boolean;
includeNonEmurable?: boolean;
arrayStrategy?: ArrayStrategy;
errorMessage?: IMergeErrorMessage;
}
export default IConfig; |