UNPKG

@wix/css-property-parser

Version:

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

11 lines (10 loc) 343 B
import type { RowGapValue } from '../types'; /** * Parse a CSS row-gap property string */ export declare function parse(value: string): RowGapValue | null; /** * Convert a parsed row-gap value back to CSS string */ export declare function toCSSValue(parsed: RowGapValue | null): string | null; export type { RowGapValue } from '../types';