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