We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7114e46 commit 87d5203Copy full SHA for 87d5203
1 file changed
lib/process-document.ts
@@ -614,19 +614,17 @@ export async function processOpenApiDocument(
614
const fetcherName = 'createIsomorphicNativeFetcher';
615
const configType = 'RestServiceClientConfig';
616
617
- mainFile.addImportDeclarations([
618
- {
619
- moduleSpecifier: '@block65/rest-client',
620
- namedImports: [
621
- serviceClientClassName,
622
- fetcherName,
623
624
- name: configType,
625
- isTypeOnly: true,
626
- },
627
- ],
628
629
- ]);
+ mainFile.addImportDeclaration({
+ moduleSpecifier: '@block65/rest-client',
+ namedImports: [
+ serviceClientClassName,
+ fetcherName,
+ {
+ name: configType,
+ isTypeOnly: true,
+ },
+ ],
+ });
630
631
mainFile.addImportDeclaration({
632
moduleSpecifier: typesModuleSpecifier,
0 commit comments