export function defaultsConfig(propertyDefaultValues: IDefaults): IDefaults {
  if (!checkIsObjectLike(propertyDefaultValues)) {
    throw new TypeError("'Defaults' should be an object");
  }
  return propertyDefaultValues;