epiphany/node_modules/@csstools/postcss-gradients-interpolation-method/dist/index.d.ts
2023-12-09 22:48:07 -08:00

10 lines
442 B
TypeScript

import type { PluginCreator } from 'postcss';
/** postcss-gradients-interpolation-method plugin options */
export 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;