We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when i try to create npm lib from generated client i receive error Error: ImportEquals should have a literal source.
Error: ImportEquals should have a literal source.
error is in line "import SimulateResponse = modelsv2.SimulateResponse;"
when i remove the line and reference the simulate endpoints directly from algosdk lib it works
simulate(): Promise<GasStationComposerResults<TReturns> & { simulateResponse: SimulateResponse }> simulate(options: SkipSignaturesSimulateOptions): Promise<GasStationComposerResults<TReturns> & { simulateResponse: SimulateResponse }> simulate(options: RawSimulateOptions): Promise<GasStationComposerResults<TReturns> & { simulateResponse: SimulateResponse }>
to
simulate(): Promise<GasStationComposerResults<TReturns> & { simulateResponse: modelsv2.SimulateResponse }> simulate(options: SkipSignaturesSimulateOptions): Promise<GasStationComposerResults<TReturns> & { simulateResponse: modelsv2.SimulateResponse }> simulate(options: RawSimulateOptions): Promise<GasStationComposerResults<TReturns> & { simulateResponse: modelsv2.SimulateResponse }>
windows
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Subject of the issue
when i try to create npm lib from generated client i receive error
Error: ImportEquals should have a literal source.
error is in line "import SimulateResponse = modelsv2.SimulateResponse;"
when i remove the line and reference the simulate endpoints directly from algosdk lib it works
to
Your environment
windows
Steps to reproduce
Expected behaviour
Actual behaviour
The text was updated successfully, but these errors were encountered: