Files
igny8/frontend/node_modules/@svgr/babel-plugin-remove-jsx-attribute/dist/index.d.ts
2025-11-09 10:27:02 +00:00

14 lines
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 };