fix(api): type definition for http > Part, closes #3268

This commit is contained in:
Lucas Nogueira
2022-01-23 16:51:35 -03:00
parent 75dea8bd39
commit efa1970db5

View File

@@ -37,7 +37,7 @@ enum ResponseType {
Binary = 3
}
type Part = 'string' | number[]
type Part = string | number[]
/** The body object to be used on POST and PUT requests. */
class Body {