From d0cb3049e5e002356efca6c5eff6900045d37e94 Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Fri, 10 Mar 2017 10:41:20 -0500 Subject: [PATCH] Remove overeloads --- src/plugins/photo-library.ts | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/src/plugins/photo-library.ts b/src/plugins/photo-library.ts index 881f7657e..5c31b5c10 100644 --- a/src/plugins/photo-library.ts +++ b/src/plugins/photo-library.ts @@ -76,14 +76,6 @@ export class PhotoLibrary { }) static getAlbums(): Promise { return; } - /** - * @private - */ - static getThumbnailURL(photoId: string, options?: GetThumbnailOptions): Promise; - /** - * @private - */ - static getThumbnailURL(libraryItem: LibraryItem, options?: GetThumbnailOptions): Promise; /** * Provides means to request URL of thumbnail, with specified size or quality. * @param photo {string | LibraryItem} Id of photo, or LibraryItem. @@ -96,14 +88,6 @@ export class PhotoLibrary { }) static getThumbnailURL(photo: string | LibraryItem, options?: GetThumbnailOptions): Promise { return; } - /** - * @private - */ - static getPhotoURL(photoId: string, options?: GetPhotoOptions): Promise; - /** - * @private - */ - static getPhotoURL(libraryItem: LibraryItem, options?: GetPhotoOptions): Promise; /** * Provides means to request photo URL by id. * @param photo {string | LibraryItem} Id or LibraryItem. @@ -116,14 +100,6 @@ export class PhotoLibrary { }) static getPhotoURL(photo: string | LibraryItem, options?: GetPhotoOptions): Promise { return; } - /** - * @private - */ - static getThumbnail(photoId: string, options?: GetThumbnailOptions): Promise; - /** - * @private - */ - static getThumbnail(libraryItem: LibraryItem, options?: GetThumbnailOptions): Promise; /** * Returns thumbnail as Blob. * @param photo {string | LibraryItem} Id or LibraryItem. @@ -136,14 +112,6 @@ export class PhotoLibrary { }) static getThumbnail(photo: string | LibraryItem, options?: GetThumbnailOptions): Promise { return; } - /** - * @private - */ - static getPhoto(photoId: string, options?: GetPhotoOptions): Promise; - /** - * @private - */ - static getPhoto(libraryItem: LibraryItem, options?: GetPhotoOptions): Promise; /** * Returns photo as Blob. * @param photo {string | LibraryItem} Id or LibraryItem.