From 4e282954863f72f9e5151915db68308689481bbd Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Thu, 9 Nov 2017 18:13:29 -0500 Subject: [PATCH] Hide function/interface properly --- src/@ionic-native/plugins/photo-library/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/photo-library/index.ts b/src/@ionic-native/plugins/photo-library/index.ts index 9eed1970f7..3ca7cf3bd3 100644 --- a/src/@ionic-native/plugins/photo-library/index.ts +++ b/src/@ionic-native/plugins/photo-library/index.ts @@ -3,6 +3,9 @@ import { Observable } from 'rxjs/Observable'; import { Observer } from 'rxjs/Observer'; import { Injectable } from '@angular/core'; +/** + * @hidden + */ export interface CordovaFiniteObservableOptions extends CordovaOptions { /** * Function that gets a result returned from plugin's success callback, and decides whether it is last value and observable should complete. @@ -15,10 +18,9 @@ export interface CordovaFiniteObservableOptions extends CordovaOptions { } /** - * @private + * @hidden * * Wraps method that returns an observable that can be completed. Provided opts.resultFinalPredicate dictates when the observable completes. - * */ export function CordovaFiniteObservable(opts: CordovaFiniteObservableOptions = {}) { opts.observable = true;