Page MenuHomec4science

index.d.ts
No OneTemporary

File Metadata

Created
Sun, Jul 14, 18:59

index.d.ts

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

Event Timeline