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 }