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