File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ declare class PlainClient {
2121 username : string ;
2222 password : string ;
2323 constructor ( username : string , password : string ) ;
24- start ( ) : Buffer ;
24+ start ( callback : Function ) : void ;
2525}
2626
2727declare class AnonymousServer {
@@ -33,7 +33,7 @@ declare class AnonymousServer {
3333declare class AnonymousClient {
3434 username : string ;
3535 constructor ( username : string ) ;
36- start ( ) : Buffer ;
36+ start ( callback : Function ) : void ;
3737}
3838
3939declare class ExternalServer {
@@ -44,15 +44,15 @@ declare class ExternalServer {
4444
4545declare class ExternalClient {
4646 username ?: string ;
47- start ( ) : "" ;
48- step ( ) : ""
47+ start ( callback : Function ) : void ;
48+ step ( callback : Function ) : void ;
4949}
5050
5151declare class XOAuth2Client {
5252 username : string ;
5353 token : string ;
5454 constructor ( username : string , token : string ) ;
55- start ( ) : Buffer ;
55+ start ( callback : Function ) : void ;
5656}
5757
5858declare class SaslServer {
You can’t perform that action at this time.
0 commit comments