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

    Interface DimensionToken

    Dimension token

    interface DimensionToken {
        loc?: Location;
        parent?: any;
        tokens?: null | Token[];
        typ: DimensionTokenType;
        unit: string;
        val: number | FractionToken;
    }

    Hierarchy (View Summary)

    Index

    Properties

    loc?: Location

    location info

    parent?: any

    parent node

    tokens?: null | Token[]

    prelude or selector tokens

    token type

    unit: string
    val: number | FractionToken