fix(photo-viewer): method is static

This commit is contained in:
Ibrahim Hadeed 2016-08-15 13:37:24 -04:00
parent 93ce443467
commit 8bc499f221
No known key found for this signature in database
GPG Key ID: 0431793F665481A4

View File

@ -24,5 +24,5 @@ export class PhotoViewer {
* @param options {any} * @param options {any}
*/ */
@Cordova({sync: true}) @Cordova({sync: true})
show(url: string, title?: string, options?: {share?: boolean; }): void { } static show(url: string, title?: string, options?: {share?: boolean; }): void { }
} }