Skip to content

Commit

Permalink
Remove overeloads
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed authored Mar 10, 2017
1 parent 8036d63 commit d0cb304
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions src/plugins/photo-library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,6 @@ export class PhotoLibrary {
})
static getAlbums(): Promise<AlbumItem[]> { return; }

/**
* @private
*/
static getThumbnailURL(photoId: string, options?: GetThumbnailOptions): Promise<string>;
/**
* @private
*/
static getThumbnailURL(libraryItem: LibraryItem, options?: GetThumbnailOptions): Promise<string>;
/**
* Provides means to request URL of thumbnail, with specified size or quality.
* @param photo {string | LibraryItem} Id of photo, or LibraryItem.
Expand All @@ -96,14 +88,6 @@ export class PhotoLibrary {
})
static getThumbnailURL(photo: string | LibraryItem, options?: GetThumbnailOptions): Promise<string> { return; }

/**
* @private
*/
static getPhotoURL(photoId: string, options?: GetPhotoOptions): Promise<string>;
/**
* @private
*/
static getPhotoURL(libraryItem: LibraryItem, options?: GetPhotoOptions): Promise<string>;
/**
* Provides means to request photo URL by id.
* @param photo {string | LibraryItem} Id or LibraryItem.
Expand All @@ -116,14 +100,6 @@ export class PhotoLibrary {
})
static getPhotoURL(photo: string | LibraryItem, options?: GetPhotoOptions): Promise<string> { return; }

/**
* @private
*/
static getThumbnail(photoId: string, options?: GetThumbnailOptions): Promise<Blob>;
/**
* @private
*/
static getThumbnail(libraryItem: LibraryItem, options?: GetThumbnailOptions): Promise<Blob>;
/**
* Returns thumbnail as Blob.
* @param photo {string | LibraryItem} Id or LibraryItem.
Expand All @@ -136,14 +112,6 @@ export class PhotoLibrary {
})
static getThumbnail(photo: string | LibraryItem, options?: GetThumbnailOptions): Promise<Blob> { return; }

/**
* @private
*/
static getPhoto(photoId: string, options?: GetPhotoOptions): Promise<Blob>;
/**
* @private
*/
static getPhoto(libraryItem: LibraryItem, options?: GetPhotoOptions): Promise<Blob>;
/**
* Returns photo as Blob.
* @param photo {string | LibraryItem} Id or LibraryItem.
Expand Down

0 comments on commit d0cb304

Please sign in to comment.