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

    Interface PropertyMapType

    interface PropertyMapType {
        constraints?: { [key: string]: { [key: string]: any } };
        default: string[];
        keywords: string[];
        mapping?: Record<string, string>;
        multiple?: boolean;
        prefix?: {
            typ:
                | "toString"
                | "toLocaleString"
                | "toFixed"
                | "toExponential"
                | "toPrecision"
                | "valueOf";
            val: string;
        };
        previous?: string;
        required?: boolean;
        separator?: {
            typ: | "toString"
            | "toLocaleString"
            | "toFixed"
            | "toExponential"
            | "toPrecision"
            | "valueOf";
        };
        types: string[];
    }
    Index

    Properties

    constraints?: { [key: string]: { [key: string]: any } }
    default: string[]
    keywords: string[]
    mapping?: Record<string, string>
    multiple?: boolean
    prefix?: {
        typ:
            | "toString"
            | "toLocaleString"
            | "toFixed"
            | "toExponential"
            | "toPrecision"
            | "valueOf";
        val: string;
    }
    previous?: string
    required?: boolean
    separator?: {
        typ:
            | "toString"
            | "toLocaleString"
            | "toFixed"
            | "toExponential"
            | "toPrecision"
            | "valueOf";
    }
    types: string[]