You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Creates multipart/form-data encoder with custom boundary string.
125
+
*
126
+
* @param form FormData object to encode. This object must be a spec-compatible FormData implementation.
127
+
* @param boundary An optional boundary string that will be used by the encoder. If there's no boundary string is present, Encoder will generate it automatically.
128
+
*/
120
129
constructor(form: FormDataLike,boundary: string)
130
+
131
+
/**
132
+
* Creates multipart/form-data encoder with additional options.
133
+
*
134
+
* @param form FormData object to encode. This object must be a spec-compatible FormData implementation.
0 commit comments