Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
srz09 committed Nov 27, 2017
1 parent f8ca55a commit 5844553
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Expand Up @@ -245,6 +245,26 @@ public get(key: string, format: ResponseFormat = ResponseFormat.String): Observa
*/
public put(key: string, value: string | number | Object | Buffer): Observable<IPutResponse>;

/**
*
* Delete the key `key`.
*
* @param {string} key The key you want to delete
*
* @returns {IDeleteRangeResponse} The result of the operation
*
*/
public delete(key: string): Observable<IDeleteRangeResponse>;

/**
*
* Delete all registered keys for the etcd3 client.
*
* @returns {IDeleteRangeResponse} The result of the operation
*
*/
public deleteAll(): Observable<IDeleteRangeResponse>;

/**
*
* Create a watcher for a specific key.
Expand Down

0 comments on commit 5844553

Please sign in to comment.