hyperlark (TypeScript)
    Preparing search index...

    Interface ImportLoaderResult

    The synchronous %import host-loader callback result: the joined path (threaded back as the base for nested imports) and the grammar text. Return null to try the next source (the embedded stdlib still resolves natively).

    interface ImportLoaderResult {
        path: string;
        text: string;
    }
    Index
    path: string
    text: string