Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
trueadm committed Nov 15, 2024
1 parent 5c0f465 commit e0648bf
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/** @import { ExportSpecifier, Node } from 'estree' */
/** @import { Binding } from '#compiler' */
/** @import { Context } from '../types' */
/** @import { Scope } from '../../scope' */
import * as e from '../../../errors.js';
Expand Down Expand Up @@ -37,7 +36,7 @@ export function ExportSpecifier(node, context) {
* @param {Node} node
* @param {Scope} scope
* @param {string} name
* @param {Map<string, Node>} undefined_exports
* @param {Map<string, any>} undefined_exports
*/
function validate_export(node, scope, name, undefined_exports) {
const binding = scope.get(name);
Expand Down

0 comments on commit e0648bf

Please sign in to comment.