Updated API docs to fix errors

This commit is contained in:
Isaac Abadi
2021-09-30 22:38:57 -06:00
parent cc75e94408
commit 609f749d6c
4 changed files with 36 additions and 40 deletions

View File

@@ -5,5 +5,5 @@
import { Download } from './Download';
export interface DownloadResponse {
download?: Download | null;
download?: Download;
}

View File

@@ -19,8 +19,5 @@ export interface DownloadTwitchChatByVODIDRequest {
* User UID
*/
uuid?: string;
/**
* Subscription
*/
sub?: Subscription;
}

View File

@@ -5,5 +5,5 @@
import { Download } from './Download';
export interface GetDownloadResponse {
download?: Download | null;
download?: Download;
}