UNPKG

@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
import { BorderColorPropertyValue } from './shared-border-color'; export type BorderBlockEndColorValue = BorderColorPropertyValue; /** * Parse a CSS border-block-end-color property string */ export declare function parse(value: string): BorderBlockEndColorValue | null; /** * Convert BorderBlockEndColorValue back to CSS string */ export declare function toCSSValue(parsed: BorderBlockEndColorValue | null): string | null;