UNPKG

@wix/css-property-parser

Version:

A comprehensive TypeScript library for parsing and serializing CSS property values with full MDN specification compliance

4 lines (3 loc) 179 B
import { FilterValue } from '../types'; export declare const parse: (value: string) => FilterValue | null; export declare const toCSSValue: (value: FilterValue) => string | null;