Skip to content

Commit

Permalink
refactor(storage-client)!: rename getAll to getStorage
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Dec 17, 2022
1 parent a6859ee commit ef7ca74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/storage-client/src/storage-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export class AlwatrStorageClient<DocumentType extends AlwatrDocumentObject = Alw
* const userStorage = await userStorage.getStorage();
* ```
*/
async getAll<T extends DocumentType = DocumentType>(
async getStorage<T extends DocumentType = DocumentType>(
name: string | undefined = this.config.name,
): Promise<AlwatrDocumentStorage<T>> {
this._logger.logMethod('getStorage');
Expand Down

0 comments on commit ef7ca74

Please sign in to comment.