diff --git a/README.md b/README.md index 1dd5bd3..a03efc5 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,15 @@ export class StorageService { // Create and expose methods that users of this service can // call, for example: public set(key: string, value: any) { - this._storage?.set(key, value); + return this._storage?.set(key, value); + } + + public get(key: string) { + return this._storage?.get(key); + } + + public remove(key: string) { + return this._storage?.remove(key); } } ```