githubEdit

get errors()

The get accessor returns the errors of Map type

CommonErrors.prototype.errors()

The getarrow-up-right accessor returns the errors of Maparrow-up-right type by returning the #errors property of a specified object.

common-errors.class.ts
protected get errors(): Map<Id, any> {
  return this.#errors;
}

Return type

Returns

The return value is the Maparrow-up-right object of errors.

Last updated