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
1 changed files with 2 additions and 2 deletions

View File

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