UNPKG

@wix/css-property-parser

Version:

A comprehensive TypeScript library for parsing and serializing CSS property values with full MDN specification compliance

4 lines (3 loc) 194 B
import { AlignSelfValue } from '../types'; export declare function parse(value: string): AlignSelfValue | null; export declare function toCSSValue(parsed: AlignSelfValue | null): string | null;