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

    Interface AstAtRule

    at rule node

    interface AstAtRule {
        chi?:
            | (AstDeclaration | AstComment | AstInvalidDeclaration)[]
            | (AstRule | AstComment)[];
        loc?: Location;
        nam: string;
        parent?: any;
        tokens?: null | Token[];
        typ: AtRuleNodeType;
        val: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    chi?:
        | (AstDeclaration | AstComment | AstInvalidDeclaration)[]
        | (AstRule | AstComment)[]
    loc?: Location

    location info

    nam: string
    parent?: any

    parent node

    tokens?: null | Token[]

    prelude or selector tokens

    token type

    val: string