File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ interface GenerateApiParamsBase {
88 */
99 name ?: string ;
1010
11- /**
11+ /**
1212 * name of the main exported class
1313 */
1414 apiClassName ?: string ;
@@ -181,7 +181,7 @@ interface GenerateApiParamsBase {
181181 extractingOptions ?: Partial < ExtractingOptions > ;
182182
183183 /** configuration for fetching swagger schema requests */
184- requestOptions ?: null | Partial < import ( "node-fetch" ) . RequestInit > ;
184+ requestOptions ?: null | Partial < RequestInit > ;
185185
186186 /** ts compiler configuration object (for --to-js option) */
187187 compilerTsConfig ?: Record < string , any > ;
@@ -682,7 +682,7 @@ export interface GenerateApiConfiguration {
682682 } ;
683683 routeNameDuplicatesMap : Map < string , string > ;
684684 apiClassName : string ;
685- requestOptions ?: import ( "node-fetch" ) . RequestInit ;
685+ requestOptions ?: RequestInit ;
686686 extractingOptions : ExtractingOptions ;
687687 } ;
688688 modelTypes : ModelType [ ] ;
@@ -697,7 +697,7 @@ export interface GenerateApiConfiguration {
697697 routes : ParsedRoute [ ] ;
698698 } [ ] ;
699699 } ;
700- requestOptions ?: null | Partial < import ( "node-fetch" ) . RequestInit > ;
700+ requestOptions ?: null | Partial < RequestInit > ;
701701 utils : {
702702 formatDescription : ( description : string , inline ?: boolean ) => string ;
703703 internalCase : ( value : string ) => string ;
You can’t perform that action at this time.
0 commit comments