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