langchain.js
    Preparing search index...

    An interface that represents a file in a GitHub repository. It has properties for the file name, path, SHA, size, URLs, type, and links.

    interface GithubFile {
        _links: { git: string; html: string; self: string };
        download_url: string;
        git_url: string;
        html_url: string;
        name: string;
        path: string;
        sha: string;
        size: number;
        type: string;
        url: string;
    }
    Index

    Properties

    _links: { git: string; html: string; self: string }
    download_url: string
    git_url: string
    html_url: string
    name: string
    path: string
    sha: string
    size: number
    type: string
    url: string