File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -521,7 +521,7 @@ interface IMessagesResponse {
521
521
state : IStateEvent [ ] ;
522
522
}
523
523
524
- interface IRequestTokenResponse {
524
+ export interface IRequestTokenResponse {
525
525
sid : string ;
526
526
submit_url ?: string ;
527
527
}
@@ -5078,7 +5078,7 @@ export class MatrixClient extends EventEmitter {
5078
5078
email : string ,
5079
5079
clientSecret : string ,
5080
5080
sendAttempt : number ,
5081
- nextLink : string ,
5081
+ nextLink ? : string ,
5082
5082
) : Promise < IRequestTokenResponse > {
5083
5083
return this . requestTokenFromEndpoint (
5084
5084
"/account/password/email/requestToken" ,
@@ -7991,10 +7991,7 @@ export class MatrixClient extends EventEmitter {
7991
7991
autoJoinOnly ?: boolean ,
7992
7992
limit ?: number ,
7993
7993
batch ?: string ,
7994
- ) : Promise < {
7995
- rooms : ISpaceSummaryRoom [ ] ;
7996
- events : ISpaceSummaryEvent [ ] ;
7997
- } > {
7994
+ ) : Promise < { rooms : ISpaceSummaryRoom [ ] , events : ISpaceSummaryEvent [ ] } > {
7998
7995
const path = utils . encodeUri ( "/rooms/$roomId/spaces" , {
7999
7996
$roomId : roomId ,
8000
7997
} ) ;
You can’t perform that action at this time.
0 commit comments