@lagoshny/ngx-hateoas-client
Version:
This client used to develop `Angular 12+` applications working with RESTfulll server API with HAL/JSON response type (supports server implementation by Spring HATEOAS)
11 lines (10 loc) • 366 B
TypeScript
export declare class ValidationUtils {
/**
* Checks that passed object with params has all valid params.
* Params should not has null, undefined, empty object, empty string values.
*
* @param params object with params to check
* @throws error if any params are not defined
*/
static validateInputParams(params: object): void;
}