UNPKG

babel-plugin-react-data-testid-generator

Version:

Enhanced babel plugin for automatic React data-testid generation with unique IDs and class component support

10 lines (9 loc) 211 B
import { PluginObj } from "@babel/core"; interface PluginOptions { attributes?: string[]; } interface PluginState { opts?: PluginOptions; } export default function (): PluginObj<PluginState>; export {};