felix9607
felix9607

Reputation: 327

Trouble using plugin with Ionic 3

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

Answers (1)

Fetrarij
Fetrarij

Reputation: 7326

You can use window.navigator, should declare window first.

Try with:

declare const window: any;

...

window.navigator.sketch

Upvotes: 1

Related Questions