File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -54,5 +54,6 @@ export class Client {
5454 retrieveAndDeleteAll ( ) : Promise < Message [ ] > ;
5555 list ( messageNumber :number ) :Promise < any > ;
5656 quit ( ) :Promise < void > ;
57+ rset ( ) :Promise < void > ;
5758 disconnect ( ) :Promise < void >
5859}
Original file line number Diff line number Diff line change @@ -471,6 +471,7 @@ if (parseInt(process.versions.node.split('.')[0]) >= 8) {
471471 Client . prototype . retr = util . promisify ( Client . prototype . retr ) ;
472472 Client . prototype . dele = util . promisify ( Client . prototype . dele ) ;
473473 Client . prototype . count = util . promisify ( Client . prototype . count ) ;
474+ Client . prototype . rset = util . promisify ( Client . prototype . rset ) ;
474475 Client . prototype . retrieve = util . promisify ( Client . prototype . retrieve ) ;
475476 Client . prototype . retrieveAll = util . promisify ( Client . prototype . retrieveAll ) ;
476477 Client . prototype . delete = util . promisify ( Client . prototype . delete ) ;
You can’t perform that action at this time.
0 commit comments