We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using:
typeconv 1.7.0 node v17.4.0
input.ts
export type T = number | string;
And on the command line:
npx typeconv -f ts -t st -o out input.ts
Gives a file out/input.ts that contains this invalid import declaration:
out/input.ts
import { suretype as , v as , compile as } from 'suretype';
The generated import declaration should be:
import { suretype, v, compile} from 'suretype';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using:
input.ts
And on the command line:
Gives a file
out/input.ts
that contains this invalid import declaration:The generated import declaration should be:
The text was updated successfully, but these errors were encountered: