File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ export class Multipart implements Part {
154
154
/**
155
155
* Parse multipart bytes (including headers). The boundary and media type are determined from the headers.
156
156
* @param data Byte representation of the multipart headers and body
157
- * @throws {SyntaxError } If the `Content-Type` header is missing or does not include a boundary
157
+ * @throws {@link ! SyntaxError } If the `Content-Type` header is missing or does not include a boundary
158
158
*/
159
159
public static parse ( data : Uint8Array ) : Multipart {
160
160
return Multipart . part ( Component . parse ( data ) ) ;
@@ -163,7 +163,7 @@ export class Multipart implements Part {
163
163
/**
164
164
* Create Multipart from a {@link Part}. The boundary and media type are determined from the part's headers.
165
165
* @param part The part
166
- * @throws {SyntaxError } If the `Content-Type` header is missing or does not include a boundary
166
+ * @throws {@link ! SyntaxError } If the `Content-Type` header is missing or does not include a boundary
167
167
*/
168
168
public static part ( part : Part ) : Multipart {
169
169
const type = part . headers . get ( "content-type" ) ;
You can’t perform that action at this time.
0 commit comments