rollup-plugin-data-qa
Version:
[](https://www.npmjs.com/package/rollup-plugin-data-qa) [](https://github.com/semantic-releas
15 lines (14 loc) • 436 B
TypeScript
import { PluginImpl } from 'rollup';
type FormatType = keyof typeof import("change-case");
interface InjectDataQaParams {
include?: string[];
exclude?: string[];
format?: FormatType;
options?: InjectDataQaOptions;
}
interface InjectDataQaOptions {
disabledStyledComponent?: boolean;
disabledReactFunctionComponent?: boolean;
}
declare const injectDataQa: PluginImpl<InjectDataQaParams>;
export { injectDataQa };