You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating a new client and opening the index file
The errors I am seeing are of 3 different types
Variable Names
export { OffPointDetails } from "./definitions/OffPointDetails";
but in my file, I have export interface OffpointDetails {
File Names export { OffpointDetails1 } from "./definitions/OffpointDetails1";
I don't have a file with this name, I do have OffPointDetails1.ts
Which is also imported 2 separate times
Duplicate Import Export
I have several duplicates of the same import happening in multiple places
for example
export { Citypair } from "./definitions/Citypair";
export { CityPair } from "./definitions/CityPair";
Yes I see the different p && P, still this should not be happening
and this little gem
export { DocumentDetails5 } from "./definitions/DocumentDetails5";
export { DocumentDetails6 } from "./definitions/DocumentDetails6";
export { DocumentDetails6 } from "./definitions/DocumentDetails6";
export { ProcessDetails } from "./definitions/ProcessDetails";
The text was updated successfully, but these errors were encountered:
When generating a new client and opening the index file
The errors I am seeing are of 3 different types
export { OffPointDetails } from "./definitions/OffPointDetails";
but in my file, I have
export interface OffpointDetails {
File Names
export { OffpointDetails1 } from "./definitions/OffpointDetails1";
I don't have a file with this name, I do have
OffPointDetails1.ts
Which is also imported 2 separate times
Duplicate Import Export
I have several duplicates of the same import happening in multiple places
for example
Yes I see the different
p
&&P
, still this should not be happeningand this little gem
The text was updated successfully, but these errors were encountered: