UNPKG

rollup-plugin-data-qa

Version:

[![npm](https://img.shields.io/npm/dm/rollup-plugin-data-qa.svg)](https://www.npmjs.com/package/rollup-plugin-data-qa) [![semantic-release](https://img.shields.io/badge/semantic-release-e10079.svg?logo=semantic-release)](https://github.com/semantic-releas

15 lines (14 loc) 436 B
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 };