Spaces:
Configuration error
Configuration error
File size: 308 Bytes
a053984 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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 };
|