Type alias ListFilesParams

ListFilesParams: {
    dir: string;
    fs: FsClient;
    cache?: Cache;
    gitdir?: string;
    ref?: string;
}

Type declaration

  • dir: string

    The working tree directory path.

  • fs: FsClient

    A file system client.

  • Optional cache?: Cache

    A cache object.

  • Optional gitdir?: string

    The git directory path (default: {dir}/.git).

  • Optional ref?: string

    Return a list of all the files in the commit at ref instead of the files currently in the git index (aka staging area).

Generated using TypeDoc