docs(file): clarify what unit getFreeDiskSpace returns with (#981)

This commit is contained in:
Attila Oláh 2017-01-18 16:30:38 +01:00 committed by Ibby Hadeed
parent 0ab14a085e
commit d8892e195b

View File

@ -385,8 +385,8 @@ export class File {
};
/**
* Get free disk space
* @returns {Promise<number>} Returns a promise that resolves with the remaining free disk space
* Get free disk space in Bytes
* @returns {Promise<number>} Returns a promise that resolves with the remaining free disk space in Bytes
*/
static getFreeDiskSpace(): Promise<number> {
return new Promise<any>((resolve, reject) => {