[AAE-26767] - Fixed lint

This commit is contained in:
VitoAlbano
2025-01-14 13:53:46 +00:00
parent 6c306da29a
commit 78d3a9b614
176 changed files with 812 additions and 0 deletions

View File

@@ -274,6 +274,7 @@ export class AdfHttpClient implements ee.Emitter, JsApiHttpClient {
/**
* Chooses a content type from the given array, with JSON preferred; i.e. return JSON if included, otherwise return the first.
*
* @param contentTypes a contentType array
* @returns The chosen content type, preferring JSON.
*/
@@ -298,6 +299,7 @@ export class AdfHttpClient implements ee.Emitter, JsApiHttpClient {
* <li>application/json; charset=UTF8</li>
* <li>APPLICATION/JSON</li>
* </ul>
*
* @param contentType The MIME content type to check.
* @returns <code>true</code> if <code>contentType</code> represents JSON, otherwise <code>false</code>.
*/
@@ -342,6 +344,7 @@ export class AdfHttpClient implements ee.Emitter, JsApiHttpClient {
/**
* Deserialize an HTTP response body into a value of the specified type.
*
* @param response response object
* @param returnType return type
* @returns deserialized object

View File

@@ -69,6 +69,7 @@ export const getQueryParamsWithCustomEncoder = (
/**
* Removes null and undefined values from an object.
*
* @param obj object to process
* @returns object with updated values
*/