Skip to content

Commit

Permalink
chore: add placeholder for replaceAwsError
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Feb 26, 2024
1 parent 01f5322 commit 6bfc09b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/transforms/v2-to-v3/apis/replaceAwsError.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Collection, JSCodeshift } from "jscodeshift";
import { ImportType } from "../modules";

export interface ReplaceAwsErrorOptions {
v2GlobalName?: string;
importType: ImportType;
}

export const replaceAwsError = (
j: JSCodeshift,

Check failure on line 10 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (18.x)

'j' is defined but never used

Check failure on line 10 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (20.x)

'j' is defined but never used
source: Collection<unknown>,

Check failure on line 11 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (18.x)

'source' is defined but never used

Check failure on line 11 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (20.x)

'source' is defined but never used
{ v2GlobalName, importType }: ReplaceAwsErrorOptions

Check failure on line 12 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (18.x)

'v2GlobalName' is defined but never used

Check failure on line 12 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (18.x)

'importType' is defined but never used

Check failure on line 12 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (20.x)

'v2GlobalName' is defined but never used

Check failure on line 12 in src/transforms/v2-to-v3/apis/replaceAwsError.ts

View workflow job for this annotation

GitHub Actions / call-build / build (20.x)

'importType' is defined but never used
) => {};

0 comments on commit 6bfc09b

Please sign in to comment.