Skip to content

Commit 02a1d8c

Browse files
committed
chore: fix docstring:
1 parent c572e3c commit 02a1d8c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/collections/backup/client.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ export const backup = (connection: Connection): Backup => {
197197
}
198198
return status
199199
? {
200-
...parseResponse(res),
201-
...status,
202-
}
200+
...parseResponse(res),
201+
...status,
202+
}
203203
: parseResponse(res);
204204
},
205205
list: (backend: Backend): Promise<BackupReturn[]> => {
@@ -259,9 +259,6 @@ export interface Backup {
259259
*
260260
* @param {Backend} backend Backend whence to list backups.
261261
* @returns {Promise<BackupReturn[]>} The response from Weaviate.
262-
* @throws {WeaviateInvalidInputError} If the input is invalid.
263-
* @throws {WeaviateBackupFailed} If the backup restoration fails.
264-
* @throws {WeaviateBackupCanceled} If the backup restoration is canceled.
265262
* */
266263
list(backend: Backend): Promise<BackupReturn[]>;
267264
}

0 commit comments

Comments
 (0)