@svgr/babel-plugin-remove-jsx-attribute
Version:
Remove JSX attribute
14 lines (11 loc) • 351 B
TypeScript
import { ConfigAPI, NodePath, types } from '@babel/core';
interface Options {
elements: string[];
attributes: string[];
}
declare const removeJSXAttribute: (_: ConfigAPI, opts: Options) => {
visitor: {
JSXOpeningElement(path: NodePath<types.JSXOpeningElement>): void;
};
};
export { Options, removeJSXAttribute as default };