UNPKG
@zhengxs/http
Version:
latest (0.0.1-rc.6)
next (0.0.1-rc.3)
0.0.1-rc.6
0.0.1-rc.5
0.0.1-rc.4
0.0.1-rc.3
0.0.1-rc.2
0.0.1-rc.1
0.0.1-rc.0
A lightweight cross-platform http request library
github.com/zhengxs2018/http
zhengxs2018/http
@zhengxs/http
/
src
/
_shims
/
MultipartBody.ts
11 lines
(9 loc)
•
224 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 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'
; } }