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