2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-05-13 16:16:32 +00:00
gl-store-s3.js/node_modules/aws-sdk/lib/credentials/file_system_credentials.d.ts
2019-05-08 12:19:12 +01:00

12 lines
403 B
TypeScript

import {Credentials} from '../credentials';
export class FileSystemCredentials extends Credentials {
/**
* Creates a new FileSystemCredentials object from a filename.
* @param {string} filename - The path on disk to the JSON file to load.
*/
constructor(filename: string);
/**
* The path to the JSON file on disk containing the credentials.
*/
filename: string
}