4 lines
205 B
TypeScript
4 lines
205 B
TypeScript
import type { NodePath } from '@babel/traverse';
|
|
import type { ComponentNode } from '../resolver/index.js';
|
|
export default function findComponentDefinition(path: NodePath): NodePath<ComponentNode> | null;
|