Files
GNX-mailEnterprise/frontend/node_modules/@csstools/postcss-oklab-function/dist/index.d.ts
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

12 lines
353 B
TypeScript

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;