Skip to content

Commit 3619ee3

Browse files
committed
refactor: rename
1 parent 117c05f commit 3619ee3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/openapi-code-generator/src/typescript/common/client-builder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export abstract class TypescriptClientBuilder implements ICompilable {
1818
public readonly exportName: string,
1919
protected readonly input: Input,
2020
protected readonly imports: ImportBuilder,
21-
protected readonly models: TypeBuilder,
21+
protected readonly types: TypeBuilder,
2222
protected readonly schemaBuilder: SchemaBuilder,
2323
protected readonly config: {
2424
enableRuntimeResponseValidation: boolean
@@ -43,7 +43,7 @@ export abstract class TypescriptClientBuilder implements ICompilable {
4343
add(operation: IROperation): void {
4444
const builder = new ClientOperationBuilder(
4545
operation,
46-
this.models,
46+
this.types,
4747
this.schemaBuilder,
4848
)
4949
this.clientServersBuilder.addOperation(operation)

0 commit comments

Comments
 (0)