diff --git a/src/@ionic-native/plugins/fcm/index.ts b/src/@ionic-native/plugins/fcm/index.ts index 4b0a52c0..053e492e 100644 --- a/src/@ionic-native/plugins/fcm/index.ts +++ b/src/@ionic-native/plugins/fcm/index.ts @@ -25,7 +25,7 @@ export interface NotificationData { * * @usage * ```typescript - * import { FCM } from 'ionic-native'; + * import { FCM } from '@ionic-native/fcm'; * * constructor(private fcm: FCM) {} * diff --git a/src/@ionic-native/plugins/file/index.ts b/src/@ionic-native/plugins/file/index.ts index 12d06a55..1b67c796 100644 --- a/src/@ionic-native/plugins/file/index.ts +++ b/src/@ionic-native/plugins/file/index.ts @@ -400,6 +400,7 @@ export interface RemoveResult { fileRemoved: Entry; } +/** @hidden */ export declare class FileSaver extends EventTarget { /** * When the FileSaver constructor is called, the user agent must return a new FileSaver object with readyState set to INIT. @@ -489,6 +490,7 @@ export declare class FileSaver extends EventTarget { } /** + * @hidden * This interface expands on the FileSaver interface to allow for multiple write actions, rather than just saving a single Blob. */ export declare class FileWriter extends FileSaver { @@ -528,6 +530,7 @@ export interface IWriteOptions { truncate?: number; // if present, number of bytes to truncate file to before writing } +/** @hidden */ export declare class FileError { constructor(code: number); static NOT_FOUND_ERR: number; @@ -547,6 +550,7 @@ export declare class FileError { message: string; } +/** @hidden */ export declare class FileReader { static EMPTY: number; static LOADING: number; diff --git a/src/@ionic-native/plugins/flurry-analytics/index.ts b/src/@ionic-native/plugins/flurry-analytics/index.ts index 3acfff93..8689f876 100644 --- a/src/@ionic-native/plugins/flurry-analytics/index.ts +++ b/src/@ionic-native/plugins/flurry-analytics/index.ts @@ -72,6 +72,9 @@ export interface FlurryAnalyticsLocation { horizontalAccuracy?: number; } +/** +* @hidden +*/ export class FlurryAnalyticsObject { constructor(private _objectInstance: any) { } diff --git a/src/@ionic-native/plugins/google-plus/index.ts b/src/@ionic-native/plugins/google-plus/index.ts index d882ad43..3288a66e 100644 --- a/src/@ionic-native/plugins/google-plus/index.ts +++ b/src/@ionic-native/plugins/google-plus/index.ts @@ -24,7 +24,7 @@ import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core'; pluginRef: 'window.plugins.googleplus', repo: 'https://github.com/EddyVerbruggen/cordova-plugin-googleplus', platforms: ['Web', 'Android', 'iOS'], - install: 'ionic plugin add cordova-plugin-googleplus --variable REVERSED_CLIENT_ID=myreversedclientid', + install: 'ionic cordova plugin add cordova-plugin-googleplus --variable REVERSED_CLIENT_ID=myreversedclientid', installVariables: ['REVERSED_CLIENT_ID'] }) @Injectable()