docs(camera): add return type to cleanup

closes #550
This commit is contained in:
Ibrahim Hadeed 2016-09-19 18:14:51 -04:00 committed by GitHub
parent a28667e751
commit 42d1bbc7a8

View File

@ -204,6 +204,6 @@ export class Camera {
@Cordova({
platforms: ['iOS']
})
static cleanup() { };
static cleanup(): Promise<any> { return; };
}