impasto
    Preparing search index...

    Interface LoadedCode

    The result of the code loader.

    interface LoadedCode {
        filePath: string;
        scope: undefined | string;
        tree: Root;
    }
    Index

    Properties

    Properties

    filePath: string

    The file path of the resource being highlighted.

    scope: undefined | string

    The scope of the highlighted code, derived from the resource path.

    tree: Root

    The HTML AST representing the highlighted code.