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

    Interface PercentageToken

    Percentage token

    interface PercentageToken {
        loc?: Location;
        parent?: any;
        tokens?: Token[] | null;
        typ: PercentageTokenType;
        val: number | FractionToken;
    }

    Hierarchy (View Summary)

    Index

    Properties

    loc?: Location

    location info

    parent?: any

    parent node

    tokens?: Token[] | null

    prelude or selector tokens

    token type

    val: number | FractionToken