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

    Interface NumberToken

    interface NumberToken {
        loc?: Location;
        parent?: AstRuleList;
        tokens?: Token[];
        typ: NumberTokenType;
        val: number | FractionToken;
        validSyntax?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    loc?: Location
    parent?: AstRuleList
    tokens?: Token[]
    val: number | FractionToken
    validSyntax?: boolean