4 lines
264 B
TypeScript
4 lines
264 B
TypeScript
import type { ExportDefaultDeclaration, ExportNamedDeclaration } from '@babel/types';
|
|
import type { NodePath } from '@babel/traverse';
|
|
export default function resolveExportDeclaration(path: NodePath<ExportDefaultDeclaration | ExportNamedDeclaration>): NodePath[];
|