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

    Interface AstRule

    rule node

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

    Hierarchy (View Summary)

    Index

    Properties

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

    location info

    optimized?: null | OptimizedSelector
    parent?: any

    parent node

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

    prelude or selector tokens

    token type