epiphany/node_modules/postcss-custom-properties/dist/transform-properties.d.ts
2023-12-09 22:48:07 -08:00

5 lines
375 B
TypeScript

import valuesParser from 'postcss-value-parser';
import type { Declaration } from 'postcss';
export declare function transformProperties(decl: Declaration, customProperties: Map<string, valuesParser.ParsedValue>, localCustomProperties: Map<string, valuesParser.ParsedValue>, parsedValuesCache: Map<string, valuesParser.ParsedValue>, opts: {
preserve?: boolean;
}): void;