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

    Interface ParseResult

    parse result object

    interface ParseResult {
        ast: AstStyleSheet;
        cssModuleVariables?: Record<string, CssVariableToken>;
        errors: ErrorDescription[];
        importMapping?: Record<string, Record<string, string>>;
        mapping?: Record<string, string>;
        stats: ParseResultStats;
    }

    Hierarchy (View Summary)

    Index

    Properties

    parsed ast tree

    cssModuleVariables?: Record<string, CssVariableToken>

    parse errors

    importMapping?: Record<string, Record<string, string>>
    mapping?: Record<string, string>

    css module mapping

    parse stats