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
The typeOnly import is replaced to normal import by codemod
Example input:
import type { DescribeStacksInput } from "aws-sdk/clients/cloudformation"; const foo: DescribeStacksInput = {};
Example output:
import { DescribeStacksCommandInput } from "@aws-sdk/client-cloudformation"; const foo: DescribeStacksCommandInput = {};
If input contains typeonly import, use typeonly export in output
import type { DescribeStacksCommandInput } from "@aws-sdk/client-cloudformation"; const foo: DescribeStacksCommandInput = {};
N/A
https://github.com/getlift/lift/blob/a91e293dcd889b3d0153444ed0b55afea470822f/src/CloudFormation.ts#L1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Self-service
Problem
The typeOnly import is replaced to normal import by codemod
Example input:
Example output:
Solution
If input contains typeonly import, use typeonly export in output
Alternatives
N/A
Additional context
https://github.com/getlift/lift/blob/a91e293dcd889b3d0153444ed0b55afea470822f/src/CloudFormation.ts#L1
The text was updated successfully, but these errors were encountered: