We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ed21b commit 8fbadaaCopy full SHA for 8fbadaa
endpoints/raw/BlobEndpoint.ts
@@ -1,6 +1,9 @@
1
import { Endpoint } from "../Endpoint";
2
import { HttpMethod, HttpHeader } from "../../http";
3
4
+/**
5
+ * Endpoint for a binary blob that can be downloaded or uploaded.
6
+ */
7
export class BlobEndpoint extends Endpoint {
8
/**
9
* Creates a new blob endpoint.
endpoints/raw/UploadEndpoint.ts
+ * Endpoint that accepts binary uploads using multi-part form encoding or raw bodies.
export class UploadEndpoint extends Endpoint {
* Creates a new upload endpoint.
0 commit comments