mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-13 20:14:56 +02:00
14 lines
308 B
TypeScript
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 };
|