@csstools/postcss-gradients-interpolation-method
Version:
Use interpolation methods in CSS gradient functions
15 lines (11 loc) • 464 B
TypeScript
import type { PluginCreator } from 'postcss';
/** postcss-gradients-interpolation-method plugin options */
export declare type pluginOptions = {
/** Preserve the original notation. default: true */
preserve?: boolean;
/** Enable "@csstools/postcss-progressive-custom-properties". default: true */
enableProgressiveCustomProperties?: boolean;
};
declare const postcssPlugin: PluginCreator<pluginOptions>;
export default postcssPlugin;
export { }