You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
327 B
TypeScript

import { Plugin } from 'vite';
import { UserDefinedOptions, ComplexSafelist } from 'purgecss';
type Options = Partial<UserDefinedOptions> & {
safelist?: ComplexSafelist;
};
type PurgeOptions = Omit<Options, 'css'>;
declare function purgeCss(purgeOptions?: PurgeOptions): Plugin;
export { purgeCss as default, purgeCss };