git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

file_system_credentials.d.ts (403B)


      1 import {Credentials} from '../credentials';
      2 export class FileSystemCredentials extends Credentials {
      3     /**
      4      * Creates a new FileSystemCredentials object from a filename.
      5      * @param {string} filename - The path on disk to the JSON file to load.
      6      */
      7     constructor(filename: string);
      8     /**
      9      * The path to the JSON file on disk containing the credentials.
     10      */
     11     filename: string
     12 }