Cordova plugins supported in Ionic?

OK, I figured out the problem. It was building, but still showing errors under Visual Studio.

The solution was to stub out the Window.plugin methods in a .d.ts file. This is what I’m currently using:

/**
 * @description Adds the missing ngCordova definitions for the Window class,
 * thus enabling the app to build under Visual Studio. This is based on the
 * solution at:
 *
 * https://forum.ionicframework.com/t/ionic-2-with-ng-cordova/36103/24
 */
interface Window {
	/**
	 * @description Stub for the plugins variable.
	 */
	plugins: any;
}