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

    Interface AtRuleToken

    At rule token

    interface AtRuleToken {
        loc?: Location;
        parent?: any;
        pre: string;
        tokens?: Token[] | null;
        typ: AtRuleTokenType;
        val: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    loc?: Location

    location info

    parent?: any

    parent node

    pre: string
    tokens?: Token[] | null

    prelude or selector tokens

    token type

    val: string