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

    Interface AstRule

    rule node

    interface AstRule {
        chi: (
            | AstDeclaration
            | AstAtRule
            | AstInvalidRule
            | AstInvalidAtRule
            | AstRule
            | AstComment
            | AstInvalidDeclaration
        )[];
        loc?: Location;
        optimized?: OptimizedSelector
        | null;
        parent?: any;
        raw?: RawSelectorTokens | null;
        sel: string;
        tokens?: Token[] | null;
        typ: RuleNodeType;
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    location info

    optimized?: OptimizedSelector | null
    parent?: any

    parent node

    raw?: RawSelectorTokens | null
    sel: string
    tokens?: Token[] | null

    prelude or selector tokens

    token type