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) 361 B
import type { ColumnGapValue } from '../types'; /** * Parse a CSS column-gap property string */ export declare function parse(value: string): ColumnGapValue | null; /** * Convert a parsed column-gap value back to CSS string */ export declare function toCSSValue(parsed: ColumnGapValue | null): string | null; export type { ColumnGapValue } from '../types';