@tbela99/css-parser
    Preparing search index...

    Interface ShorthandMapType

    interface ShorthandMapType {
        default: string[];
        keywords: string[];
        mapping?: Record<string, string>;
        multiple?: boolean;
        pattern: string;
        properties: { [property: string]: PropertyMapType };
        separator?: {
            typ:
                | "toString"
                | "toLocaleString"
                | "toFixed"
                | "toExponential"
                | "toPrecision"
                | "valueOf";
            val?: string;
        };
        set?: Record<string, string[]>;
        shorthand: string;
    }
    Index

    Properties

    default: string[]
    keywords: string[]
    mapping?: Record<string, string>
    multiple?: boolean
    pattern: string
    properties: { [property: string]: PropertyMapType }
    separator?: {
        typ:
            | "toString"
            | "toLocaleString"
            | "toFixed"
            | "toExponential"
            | "toPrecision"
            | "valueOf";
        val?: string;
    }
    set?: Record<string, string[]>
    shorthand: string