com-sarriaroman-photoviewer
Version:
This plugin is intended to show a picture from an URL into a Photo Viewer with zoom features.
16 lines • 427 B
TypeScript
declare var exec: any;
interface IPhotoViewerOptions {
share?: boolean;
closeButton?: boolean;
copyToReference?: boolean;
headers?: string;
piccasoOptions?: {
fit?: boolean;
centerInside?: boolean;
centerCrop?: boolean;
};
}
declare class PhotoViewer {
static show(url: string, title?: string, options?: IPhotoViewerOptions): void;
}
//# sourceMappingURL=PhotoViewer.d.ts.map