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

    Interface StringToken

    interface StringToken {
        loc?: Location;
        parent?: AstRuleList;
        tokens?: Token[];
        typ: StringTokenType;
        val: string;
        validSyntax?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    loc?: Location
    parent?: AstRuleList
    tokens?: Token[]
    val: string
    validSyntax?: boolean