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