UNPKG

@wix/css-property-parser

Version:

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

5 lines (4 loc) 235 B
import type { GridColumnValue } from '../types'; export declare function parse(value: string): GridColumnValue | null; export declare function toCSSValue(parsed: GridColumnValue | null): string | null; export type { GridColumnValue };