Skip to content

Commit

Permalink
Merge pull request #25 from hildjj/rename-type
Browse files Browse the repository at this point in the history
Update rename type.
  • Loading branch information
hildjj committed Feb 19, 2024
2 parents b194990 + ef1ac76 commit 94b397b
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"@types/eslint": "8.56.2",
"@types/estree": "1.0.5",
"@types/node": "20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"c8": "9.1.0",
"copyfiles": "2.4.1",
"eslint": "8.56.0",
Expand Down
86 changes: 43 additions & 43 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/ast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ export interface ImportBindingDefault extends BaseNode<"import_binding_default">
}

export interface ImportBindingRename extends BaseNode<"import_binding_rename"> {
rename: string;
rename: ModuleExportName | Name;
binding: Binding;
}

export interface Binding extends BaseNode<"binding"> {
id?: Name;
id: Name;
}

export type ImportModuleSpecifier = QuotedString<"import_module_specifier">;
Expand Down

0 comments on commit 94b397b

Please sign in to comment.