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

    Interface StringToken

    String token

    interface StringToken {
        loc?: Location;
        parent?: any;
        tokens?: null | Token[];
        typ: StringTokenType;
        val: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    loc?: Location

    location info

    parent?: any

    parent node

    tokens?: null | Token[]

    prelude or selector tokens

    token type

    val: string