You can not 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
461 B

import type { Plugin } from 'postcss';
import type { Options } from 'autoprefixer';
import uniPostcssScopedPlugin from './plugins/stylePluginScoped';
import uniPostcssPlugin, { type UniAppCssProcessorOptions } from './plugins/uniapp';
export { uniPostcssPlugin };
export { uniPostcssScopedPlugin };
export declare function initPostcssPlugin({ uniApp, autoprefixer, }?: {
uniApp?: UniAppCssProcessorOptions;
autoprefixer?: Options | false;
}): Plugin[];