'
+ */
+ social_tools?: any;
+ }
+
+ interface moduleJQuery {
+ /**
+ * Initialises prettyPhoto
+ */
+ (): JQuery;
+
+ /**
+ * Initialises prettyPhoto specificying overrides for the defaults
+ * @param pp_settings custom prettyPhoto settings
+ */
+ (pp_settings: PrettyPhotoSettings): JQuery;
+ }
+
+ interface moduleJQueryStatic {
+ /**
+ * prettyPhoto version number
+ */
+ version: string;
+
+ /**
+ * Opens the prettyPhoto modal box.
+ * Note: Always returns false.
+ */
+ open(): boolean;
+
+ /**
+ * Opens the prettyPhoto modal box.
+ * Note: Always returns false.
+ * @param image {String} Full path to the image to be open, can also be an array containing full images paths.
+ * @param title {String} The title to be displayed with the picture, can also be an array containing all the titles.
+ * @param description {String} The description to be displayed with the picture, can also be an array containing all the descriptions.
+ */
+ open(image: string, title: string, description: string): boolean;
+
+ /**
+ * Opens the prettyPhoto modal box.
+ * Note: Always returns false.
+ * @param image {Array} Full path to the image to be open, can also be an array containing full images paths.
+ * @param title {Array} The title to be displayed with the picture, can also be an array containing all the titles.
+ * @param description {Array} The description to be displayed with the picture, can also be an array containing all the descriptions.
+ */
+ open(images: string[], titles: string[], descriptions: string[]): boolean;
+
+ /**
+ * Change page in the prettyPhoto modal box
+ * @param direction {String} Direction of the paging, previous or next.
+ */
+ changePage(direction: string): void;
+
+ /**
+ * Change gallery page in the prettyPhoto modal box
+ * @param direction {String} Direction of the paging, previous or next.
+ */
+ changeGalleryPage(direction: string): void;
+
+ /**
+ * Start the slideshow...
+ */
+ startSlideshow(): void;
+
+ /**
+ * Stop the slideshow...
+ */
+ stopSlideshow(): void;
+
+ /**
+ * Closes prettyPhoto.
+ */
+ close(): void;
+ }
+}
+
+interface JQuery {
+ prettyPhoto: scaron_prettyPhoto.moduleJQuery;
+}
+
+interface JQueryStatic {
+ prettyPhoto: scaron_prettyPhoto.moduleJQueryStatic;
+}
\ No newline at end of file