Spaces:
Sleeping
Sleeping
File size: 353 Bytes
cc651f6 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import type { PluginCreator } from 'postcss';
declare type pluginOptions = {
enableProgressiveCustomProperties?: boolean;
preserve?: boolean;
subFeatures?: {
displayP3?: boolean;
};
};
/** Transform oklab() and oklch() functions in CSS. */
declare const postcssPlugin: PluginCreator<pluginOptions>;
export default postcssPlugin;
|