Merge branch 'master' of github.com:driftyco/ionic-native

This commit is contained in:
Ibby Hadeed 2017-05-19 00:35:10 -04:00
commit 0b2227d35a
4 changed files with 9 additions and 2 deletions

View File

@ -25,7 +25,7 @@ export interface NotificationData {
* *
* @usage * @usage
* ```typescript * ```typescript
* import { FCM } from 'ionic-native'; * import { FCM } from '@ionic-native/fcm';
* *
* constructor(private fcm: FCM) {} * constructor(private fcm: FCM) {}
* *

View File

@ -400,6 +400,7 @@ export interface RemoveResult {
fileRemoved: Entry; fileRemoved: Entry;
} }
/** @hidden */
export declare class FileSaver extends EventTarget { 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. * 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. * 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 { 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 truncate?: number; // if present, number of bytes to truncate file to before writing
} }
/** @hidden */
export declare class FileError { export declare class FileError {
constructor(code: number); constructor(code: number);
static NOT_FOUND_ERR: number; static NOT_FOUND_ERR: number;
@ -547,6 +550,7 @@ export declare class FileError {
message: string; message: string;
} }
/** @hidden */
export declare class FileReader { export declare class FileReader {
static EMPTY: number; static EMPTY: number;
static LOADING: number; static LOADING: number;

View File

@ -72,6 +72,9 @@ export interface FlurryAnalyticsLocation {
horizontalAccuracy?: number; horizontalAccuracy?: number;
} }
/**
* @hidden
*/
export class FlurryAnalyticsObject { export class FlurryAnalyticsObject {
constructor(private _objectInstance: any) { } constructor(private _objectInstance: any) { }

View File

@ -24,7 +24,7 @@ import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
pluginRef: 'window.plugins.googleplus', pluginRef: 'window.plugins.googleplus',
repo: 'https://github.com/EddyVerbruggen/cordova-plugin-googleplus', repo: 'https://github.com/EddyVerbruggen/cordova-plugin-googleplus',
platforms: ['Web', 'Android', 'iOS'], 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'] installVariables: ['REVERSED_CLIENT_ID']
}) })
@Injectable() @Injectable()