Correct return type in jsdoc block.

This commit is contained in:
Alex Tselegidis 2022-01-18 15:50:09 +01:00
parent dde3202b66
commit 075e67e0e3

View file

@ -176,7 +176,7 @@ App.Components.WorkingPlanExceptionsModal = (function () {
/** /**
* Open the modal and start adding a new working plan exception. * Open the modal and start adding a new working plan exception.
* *
* @returns {jQuery.Deferred} * @returns {*|jQuery.Deferred}
*/ */
function add() { function add() {
deferred = $.Deferred(); deferred = $.Deferred();
@ -196,7 +196,7 @@ App.Components.WorkingPlanExceptionsModal = (function () {
* @param {String} date * @param {String} date
* @param {Object} workingPlanException * @param {Object} workingPlanException
* *
* @return {jQuery.Deferred} * @return {*|jQuery.Deferred}
*/ */
function edit(date, workingPlanException) { function edit(date, workingPlanException) {
deferred = $.Deferred(); deferred = $.Deferred();