Reputation: 327
https://github.com/blinkmobile/cordova-plugin-sketch
i found this Little plugin and want to use it in my Ionic 3 app. Sadly i have Trouble using it, because after succesfully installing it with
cordova plugin add https://github.com/blinkmobile/cordova-plugin-sketch.git
VSCode says all the time: "Property 'sketch' does not exist on type 'Navigator'."
Is this maybe not compatible with Ionic or am I hopefully just missing something?
Thanks
Upvotes: 1
Views: 48
Reputation: 7326
You can use window.navigator, should declare window
first.
Try with:
declare const window: any;
...
window.navigator.sketch
Upvotes: 1