Skip to content

Commit fbdf928

Browse files
committed
add line break
1 parent 6ae7640 commit fbdf928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/openapi-typescript/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ async function openapiTS(schema: string | URL | OpenAPI3 | Readable, options: Op
126126

127127
if (options.rootTypes) {
128128
for (const schema of Object.keys(typedComponents.schemas as object)) {
129-
output.push(`export type ${schema} = components["schema"]["${schema}"];`);
129+
output.push(`export type ${schema} = components["schema"]["${schema}"];\n`);
130130
}
131131
}
132132

0 commit comments

Comments
 (0)