fix: added dummy boolean

not sure if required
This commit is contained in:
Ibrahim Hadeed 2016-03-06 16:59:09 -05:00
parent 3ec25fa63b
commit 2caa1516ab

View File

@ -85,6 +85,9 @@ export class Flashlight {
@Cordova({ @Cordova({
sync: true sync: true
}) })
static isSwitchedOn() {} static isSwitchedOn() : boolean {
// DUMMY BOOLEAN, @Cordova decorator will replace value.
return true;
}
} }