Skip to content

Commit 8fbadaa

Browse files
committed
Added missing class documentation
1 parent 68ed21b commit 8fbadaa

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

endpoints/raw/BlobEndpoint.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import { Endpoint } from "../Endpoint";
22
import { HttpMethod, HttpHeader } from "../../http";
33

4+
/**
5+
* Endpoint for a binary blob that can be downloaded or uploaded.
6+
*/
47
export class BlobEndpoint extends Endpoint {
58
/**
69
* Creates a new blob endpoint.

endpoints/raw/UploadEndpoint.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import { Endpoint } from "../Endpoint";
22
import { HttpMethod, HttpHeader } from "../../http";
33

4+
/**
5+
* Endpoint that accepts binary uploads using multi-part form encoding or raw bodies.
6+
*/
47
export class UploadEndpoint extends Endpoint {
58
/**
69
* Creates a new upload endpoint.

0 commit comments

Comments
 (0)