diff --git a/src/transforms/v2-to-v3/modules/types.ts b/src/transforms/v2-to-v3/modules/types.ts index 2209242ec..559ef1743 100644 --- a/src/transforms/v2-to-v3/modules/types.ts +++ b/src/transforms/v2-to-v3/modules/types.ts @@ -14,6 +14,10 @@ export interface ImportSpecifierOptions { localName?: string; } +export interface ModulesOptions extends ImportSpecifierOptions { + packageName: string; +} + export enum ImportType { REQUIRE = "require", IMPORT = "import",