I want to use the LibraryHelper plugin in my Ionic 2 app, but the docs for it defines its usage statically, e.g.:
LibraryHelper.saveVideoToLibrary(....)
NOT through:
window.plugins.LibraryHelper.saveVideoToLibrary(....
When I write the first line in my Typescript .ts file, I get the error:
Cannot find name 'LibraryHelper'
Q) How do I import the LibraryHelper plugin into my Ionic 2 app and be able to reference it without it - being undefined as above?