1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-20 09:23:23 +00:00

Fix mistake and clarify api method name (#347)

This commit is contained in:
Matt Gibson
2021-04-20 14:59:51 -05:00
committed by GitHub
parent 372e139810
commit a5ccca05da
3 changed files with 5 additions and 5 deletions

View File

@@ -193,7 +193,7 @@ export abstract class ApiService {
putSendRemovePassword: (id: string) => Promise<SendResponse>;
deleteSend: (id: string) => Promise<any>;
getSendFileDownloadData: (send: SendAccessView, request: SendAccessRequest) => Promise<SendFileDownloadDataResponse>;
renewFileUploadUrl: (sendId: string, fileId: string) => Promise<SendFileUploadDataResponse>;
renewSendFileUploadUrl: (sendId: string, fileId: string) => Promise<SendFileUploadDataResponse>;
getCipher: (id: string) => Promise<CipherResponse>;
getCipherAdmin: (id: string) => Promise<CipherResponse>;