Source: api/constants.js

'use strict';

module.exports = {
  /**
   * Error code.
   *
   * @name ErrorCode
   * @readonly
   * @enum {string}
   */
  ErrorCode: {
    Unknown: 'err_unknown',
    Rsc: 'err_rsc',
  },
  HttpMethod: {
    Get: 'GET',
    Patch: 'PATCH',
  },
};