Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalshaikh42 committed Oct 21, 2021
1 parent a3eeef4 commit ac0dfc0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { Configuration } from '../configuration';
export class PetService {

protected basePath = 'http://petstore.swagger.io/v2';
public defaultHeaders = new Map()
public defaultHeaders: Record<string,string> = {};
public configuration = new Configuration();

constructor(protected httpClient: HttpService, @Optional() configuration: Configuration) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Configuration } from '../configuration';
export class StoreService {

protected basePath = 'http://petstore.swagger.io/v2';
public defaultHeaders = new Map()
public defaultHeaders: Record<string,string> = {};
public configuration = new Configuration();

constructor(protected httpClient: HttpService, @Optional() configuration: Configuration) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Configuration } from '../configuration';
export class UserService {

protected basePath = 'http://petstore.swagger.io/v2';
public defaultHeaders = new Map()
public defaultHeaders: Record<string,string> = {};
public configuration = new Configuration();

constructor(protected httpClient: HttpService, @Optional() configuration: Configuration) {
Expand Down

0 comments on commit ac0dfc0

Please sign in to comment.