Files
est-frame/node_modules/@svgr/babel-plugin-svg-em-dimensions/dist/index.d.ts
2025-10-22 05:38:27 +00:00

14 lines
334 B
TypeScript
Executable File

import { ConfigAPI, NodePath, types } from '@babel/core';
interface Options {
width: number | string;
height: number | string;
}
declare const plugin: (_: ConfigAPI, opts: Options) => {
visitor: {
JSXOpeningElement(path: NodePath<types.JSXOpeningElement>): void;
};
};
export { Options, plugin as default };