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

9 lines
334 B
TypeScript

import type { PluginCreator } from 'postcss';
/** postcss-hwb-function plugin options */
export type pluginOptions = {
/** Preserve the original notation. default: false */
preserve?: boolean;
};
/** Transform hwb() functions in CSS. */
declare const postcssPlugin: PluginCreator<pluginOptions>;
export default postcssPlugin;