@wix/css-property-parser
Version:
A comprehensive TypeScript library for parsing and serializing CSS property values with full MDN specification compliance
13 lines (12 loc) • 505 B
TypeScript
import { ColumnGapValue } from '../types';
export type GridColumnGapValue = ColumnGapValue;
/**
* Parse a CSS grid-column-gap property string (legacy alias for column-gap)
* @deprecated Use column-gap instead
*/
export declare function parse(value: string): GridColumnGapValue | null;
/**
* Convert a parsed grid-column-gap back to CSS string (legacy alias for column-gap)
* @deprecated Use column-gap instead
*/
export declare function toCSSValue(parsed: GridColumnGapValue | null): string | null;