MultipartBody.js 426 B

12345678910111213141516
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.MultipartBody = void 0;
  4. /**
  5. * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
  6. */
  7. class MultipartBody {
  8. constructor(body) {
  9. this.body = body;
  10. }
  11. get [Symbol.toStringTag]() {
  12. return 'MultipartBody';
  13. }
  14. }
  15. exports.MultipartBody = MultipartBody;
  16. //# sourceMappingURL=MultipartBody.js.map