index.d.mts 295 B

12345678910111213
  1. import { Plugin } from 'vite';
  2. type PluginOptions = {
  3. /**
  4. * Optimize and minify the output CSS.
  5. */
  6. optimize?: boolean | {
  7. minify?: boolean;
  8. };
  9. };
  10. declare function tailwindcss(opts?: PluginOptions): Plugin[];
  11. export { type PluginOptions, tailwindcss as default };