diff --git a/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.input.ts b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.input.ts new file mode 100644 index 000000000..6a87daf42 --- /dev/null +++ b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.input.ts @@ -0,0 +1,3 @@ +import AWS from "aws-sdk"; + +const arr = new Array(); \ No newline at end of file diff --git a/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.output.ts b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.output.ts new file mode 100644 index 000000000..6cfdc41c2 --- /dev/null +++ b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.output.ts @@ -0,0 +1,3 @@ +import { StackResourceSummary } from "@aws-sdk/client-cloudformation"; + +const arr = new Array(); \ No newline at end of file