resolveExportDeclaration.d.ts 264 B

123
  1. import type { ExportDefaultDeclaration, ExportNamedDeclaration } from '@babel/types';
  2. import type { NodePath } from '@babel/traverse';
  3. export default function resolveExportDeclaration(path: NodePath<ExportDefaultDeclaration | ExportNamedDeclaration>): NodePath[];