index.d.ts 268 B

1234567
  1. import type { ResolvedConfig } from 'vite';
  2. export * from './ast';
  3. export * from './url';
  4. export * from './plugin';
  5. export * from './utils';
  6. export declare const buildInCssSet: Set<string>;
  7. export declare function isCombineBuiltInCss(config: ResolvedConfig): boolean;