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