@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) • 472 B
TypeScript
import { RowGapValue } from '../types';
export type GridRowGapValue = RowGapValue;
/**
* Parse a CSS grid-row-gap property string (legacy alias for row-gap)
* @deprecated Use row-gap instead
*/
export declare function parse(value: string): GridRowGapValue | null;
/**
* Convert a parsed grid-row-gap back to CSS string (legacy alias for row-gap)
* @deprecated Use row-gap instead
*/
export declare function toCSSValue(parsed: GridRowGapValue | null): string | null;