Functions

Fetch

Fetches information from a backup!

 
/**
 * @param {string} [backupID] - The ID of the backup to fetch
*/
 
const backup = require("backupie");
backup.fetch(backupID).then((backupInfos) => {
    console.log(backupInfos);
    /*
    {
        id: "BC5qo",
        size: 0.05
        data: {BackupData}
    }
    */
});
 

On this page

No Headings