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

    Interface AstRule

    interface AstRule {
        chi: (AstDeclaration | AstRuleList | AstComment)[];
        loc?: Location;
        optimized?: null | OptimizedSelector;
        parent?: AstRuleList;
        raw?: null | RawSelectorTokens;
        sel: string;
        tokens?: Token[];
        typ: RuleNodeType;
        validSyntax?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    loc?: Location
    optimized?: null | OptimizedSelector
    parent?: AstRuleList
    raw?: null | RawSelectorTokens
    sel: string
    tokens?: Token[]
    validSyntax?: boolean