_shims/MultipartBody.ts (6 lines of code) (raw):

/** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ export class MultipartBody { constructor(public body: any) {} get [Symbol.toStringTag](): string { return "MultipartBody"; } }