UNPKG

194 BTypeScriptView Raw
1import { NodePath, types } from '@babel/core';
2
3declare const plugin: () => {
4 visitor: {
5 JSXElement(path: NodePath<types.JSXElement>): void;
6 };
7};
8
9export { plugin as default };