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) 262 B
import { JustifyContentValue } from '../types'; export type { JustifyContentValue } from '../types'; export declare function parse(value: string): JustifyContentValue | null; export declare function toCSSValue(parsed: JustifyContentValue | null): string | null;