@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) • 427 B
TypeScript
import { BorderIndividualValue } from '../types';
export type { BorderIndividualValue } from '../types';
/**
* Parse individual border shorthand property value
*/
export declare function parseBorderIndividualProperty(value: string): BorderIndividualValue | null;
/**
* Convert individual border value to CSS string
*/
export declare function borderIndividualToCSSValue(parsed: BorderIndividualValue | null): string | null;