KC's Workspace
    Preparing search index...

    A known property with an unparsed value.

    This type is used when the value of a known property could not be parsed, e.g. in the case css var() references are encountered. In this case, the raw tokens are stored instead.

    interface UnparsedProperty {
        propertyId: PropertyId;
        value: TokenOrValue[];
    }
    Index

    Properties

    Properties

    propertyId: PropertyId

    The id of the property.

    value: TokenOrValue[]

    The property value, stored as a raw token list.