| 1 | const plugin = require("tailwindcss/plugin"); |
| 2 | |
| 3 | interface ModifySelectorsArgs { |
| 4 | className: string; |
| 5 | } |
| 6 | |
| 7 | interface VariantOptions { |
| 8 | modifySelectors: (callback: (args: ModifySelectorsArgs) => string) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected