refracto(): tslint

This commit is contained in:
Ibrahim Hadeed 2016-08-26 12:33:28 -04:00
parent 48334aa4cd
commit a4798b81a8
No known key found for this signature in database
GPG Key ID: 0431793F665481A4
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
import {Cordova, Plugin, CordovaProperty} from './plugin';
import {Cordova, Plugin} from './plugin';
/**
* @name Diagnostic

View File

@ -756,7 +756,7 @@ export class File {
reader.readAsText(file);
}, error => {
reject(error);
})
});
});
});
@ -800,7 +800,7 @@ export class File {
reader.readAsDataURL(file);
}, error => {
reject(error);
})
});
});
});
}
@ -840,7 +840,7 @@ export class File {
reader.readAsBinaryString(file);
}, error => {
reject(error);
})
});
});
});
@ -881,7 +881,7 @@ export class File {
reader.readAsArrayBuffer(file);
}, error => {
reject(error);
})
});
});
});