Files
documentation/node_modules/@svgr/babel-plugin-transform-react-native-svg/dist/index.d.ts
2024-03-22 03:47:51 +05:30

14 lines
308 B
TypeScript

import { NodePath, types } from '@babel/core';
interface State {
replacedComponents: Set<string>;
unsupportedComponents: Set<string>;
}
declare const plugin: () => {
visitor: {
Program(path: NodePath<types.Program>, state: Partial<State>): void;
};
};
export { plugin as default };