@kubb/core 0.44.2 → 0.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17235,7 +17235,7 @@ var kubb = (function (exports) {
17235
17235
  const importSource = imports.reduce((prev, curr) => {
17236
17236
  if (Array.isArray(curr.name)) {
17237
17237
  return `${prev}
17238
- import ${curr.isTypeOnly ? "type " : ""}{ ${curr.name.join(",")} } from "${curr.path}";`;
17238
+ import ${curr.isTypeOnly ? "type " : ""}{ ${curr.name.join(", ")} } from "${curr.path}";`;
17239
17239
  }
17240
17240
  return `${prev}
17241
17241
  import ${curr.isTypeOnly ? "type " : ""}${curr.name} from "${curr.path}";`;