| 11 | libs: typeof libs; | 11 | libs: typeof libs; |
| 12 | }; | 12 | }; |
| 13 | | 13 | |
| 14 | // Jquery plugins | 14 | declare global { |
| 15 | interface JQuery { | 15 | // Jquery plugins |
| 16 | nanogallery2(options?: any): JQuery; | 16 | interface JQuery { |
| 17 | nanogallery2(method: string, options?: any): JQuery; | 17 | nanogallery2(options?: any): JQuery; |
| 18 | pagination(method: 'getCurrentPageNum'): number; | 18 | nanogallery2(method: string, options?: any): JQuery; |
| 19 | pagination(method: string, options?: any): JQuery; | 19 | pagination(method: 'getCurrentPageNum'): number; |
| 20 | pagination(options?: any): JQuery; | 20 | pagination(method: string, options?: any): JQuery; |
| 21 | transition(options?: any, complete?: function): JQuery; | 21 | pagination(options?: any): JQuery; |
| 22 | autocomplete(options?: any): JQuery; | 22 | transition(options?: any, complete?: function): JQuery; |
| 23 | autocomplete(method: string, options?: any): JQuery; | 23 | autocomplete(options?: any): JQuery; |
| 24 | slider(options?: any): JQuery; | 24 | autocomplete(method: string, options?: any): JQuery; |
| 25 | slider(method: string, func: string, options?: any): JQuery; | 25 | slider(options?: any): JQuery; |
| 26 | cropper(options?: any): JQuery; | 26 | slider(method: string, func: string, options?: any): JQuery; |
| 27 | izoomify(options?: any): JQuery; | 27 | cropper(options?: any): JQuery; |
| 28 | | 28 | izoomify(options?: any): JQuery; |
| 29 | //#region select2 | 29 | |
| 30 | | 30 | //#region select2 |
| 31 | /** | 31 | |
| 32 | * Initializes or modifies a select2 instance with provided options | 32 | /** |
| 33 | * | 33 | * Initializes or modifies a select2 instance with provided options |
| 34 | * @param options - Configuration options for the select2 instance | 34 | * |
| 35 | * @returns The jQuery object for chaining | 35 | * @param options - Configuration options for the select2 instance |
| 36 | */ | 36 | * @returns The jQuery object for chaining |
| 37 | select2(options?: Select2Options): JQuery; | 37 | */ |
| 38 | | 38 | select2(options?: Select2Options): JQuery; |
| 39 | /** | 39 | |
| 40 | * Retrieves data currently selected in the select2 instance | 40 | /** |
| 41 | * | 41 | * Retrieves data currently selected in the select2 instance |
| 42 | * @param field - A string specifying the 'data' method | 42 | * |
| 43 | * @returns An array of selected items | 43 | * @param field - A string specifying the 'data' method |
| 44 | */ | 44 | * @returns An array of selected items |
| 45 | select2(field: 'data'): any[]; | 45 | */ |
| 46 | | 46 | select2(field: 'data'): any[]; |
| 47 | /** | 47 | |
| 48 | * Calls the specified select2 method | 48 | /** |
| 49 | * | 49 | * Calls the specified select2 method |
| 50 | * @param method - The name of the select2 method to invoke | 50 | * |
| 51 | * @returns The jQuery object for chaining | 51 | * @param method - The name of the select2 method to invoke |
| 52 | */ | 52 | * @returns The jQuery object for chaining |
| 53 | select2(method: 'open' | 'close' | 'destroy' | 'focus' | 'val', value?: any): JQuery; | 53 | */ |
| 54 | | 54 | select2(method: 'open' | 'close' | 'destroy' | 'focus' | 'val', value?: any): JQuery; |
| 55 | //#endregion | 55 | |
| 56 | | 56 | //#endregion |
| 57 | //#region sortable | 57 | |
| 58 | | 58 | //#region sortable |
| 59 | /** | 59 | |
| 60 | * Initializes or updates a sortable instance with the provided options | 60 | /** |
| 61 | * | 61 | * Initializes or updates a sortable instance with the provided options |
| 62 | * @param options - Configuration options for the sortable instance | 62 | * |
| 63 | * @returns The jQuery object for chaining | 63 | * @param options - Configuration options for the sortable instance |
| 64 | */ | 64 | * @returns The jQuery object for chaining |
| 65 | sortable(options?: SortableOptions): JQuery; | 65 | */ |
| 66 | | 66 | sortable(options?: SortableOptions): JQuery; |
| 67 | /** | 67 | |
| 68 | * Calls a sortable method to perform actions on the instance | 68 | /** |
| 69 | * | 69 | * Calls a sortable method to perform actions on the instance |
| 70 | * @param method - The name of the sortable method to invoke | 70 | * |
| 71 | * @returns The jQuery object for chaining | 71 | * @param method - The name of the sortable method to invoke |
| 72 | */ | 72 | * @returns The jQuery object for chaining |
| 73 | sortable(method: 'destroy' | 'disable' | 'enable' | 'refresh' | 'toArray'): JQuery; | 73 | */ |
| 74 | | 74 | sortable(method: 'destroy' | 'disable' | 'enable' | 'refresh' | 'toArray'): JQuery; |
| 75 | /** | 75 | |
| 76 | * Retrieves the sortable's instance object. If the element does not have an associated instance, undefined is returned. | 76 | /** |
| 77 | * | 77 | * Retrieves the sortable's instance object. If the element does not have an associated instance, undefined is returned. |
| 78 | * @returns The instance of the sortable object | 78 | * |
| 79 | */ | 79 | * @returns The instance of the sortable object |
| 80 | sortable(method: 'instance'): object; | 80 | */ |
| 81 | | 81 | sortable(method: 'instance'): object; |
| 82 | /** | 82 | |
| 83 | * Retrieves the current option value for the specified option | 83 | /** |
| 84 | * | 84 | * Retrieves the current option value for the specified option |
| 85 | * @param method - The string 'option' to retrieve an option value | 85 | * |
| 86 | * @param optionName - The name of the option to retrieve | 86 | * @param method - The string 'option' to retrieve an option value |
| 87 | * @returns The value of the specified option | 87 | * @param optionName - The name of the option to retrieve |
| 88 | */ | 88 | * @returns The value of the specified option |
| 89 | sortable(method: 'option', optionName: string): any; | 89 | */ |
| 90 | | 90 | sortable(method: 'option', optionName: string): any; |
| 91 | /** | 91 | |
| 92 | * Sets the value of the specified option | 92 | /** |
| 93 | * | 93 | * Sets the value of the specified option |
| 94 | * @param method - The string 'option' to set an option value | 94 | * |
| 95 | * @param optionName - The name of the option to set | 95 | * @param method - The string 'option' to set an option value |
| 96 | * @param value - The value to assign to the option | 96 | * @param optionName - The name of the option to set |
| 97 | * @returns The jQuery object for chaining | 97 | * @param value - The value to assign to the option |
| 98 | */ | 98 | * @returns The jQuery object for chaining |
| 99 | sortable(method: 'option', optionName: string, value: any): JQuery; | 99 | */ |
| 100 | | 100 | sortable(method: 'option', optionName: string, value: any): JQuery; |
| 101 | /** | 101 | |
| 102 | * Sets multiple options using an object | 102 | /** |
| 103 | * | 103 | * Sets multiple options using an object |
| 104 | * @param method - The string 'option' to set options | 104 | * |
| 105 | * @param options - An object containing multiple option key-value pairs | 105 | * @param method - The string 'option' to set options |
| 106 | * @returns The jQuery object for chaining | 106 | * @param options - An object containing multiple option key-value pairs |
| 107 | */ | 107 | * @returns The jQuery object for chaining |
| 108 | sortable(method: 'option', options: SortableOptions): JQuery; | 108 | */ |
| 109 | | 109 | sortable(method: 'option', options: SortableOptions): JQuery; |
| 110 | //#endregion | 110 | |
| | 111 | //#endregion |
| | 112 | } |
| 111 | } | 113 | } |
| 112 | | 114 | |
| 113 | //#region select2 | 115 | //#region select2 |