mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-21 00:23:00 +08:00
Remove overeloads
This commit is contained in:
parent
8036d6392d
commit
d0cb3049e5
@ -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.
|
||||
@ -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.
|
||||
@ -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.
|
||||
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user