Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6638 from matrix-org/palid/dx/typescriptify-passw…
Browse files Browse the repository at this point in the history
…ord-reset

Add missing types
  • Loading branch information
Palid committed Aug 19, 2021
2 parents 9398741 + e5b1cff commit 5a1633d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PasswordReset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default class PasswordReset {
* @param {string} newPassword The new password for the account.
* @return {Promise} Resolves when the email has been sent. Then call checkEmailLinkClicked().
*/
public resetPassword(emailAddress, newPassword): Promise<IRequestTokenResponse> {
public resetPassword(emailAddress: string, newPassword: string): Promise<IRequestTokenResponse> {
this.password = newPassword;
return this.client.requestPasswordEmailToken(emailAddress, this.clientSecret, 1).then((res) => {
this.sessionId = res.sid;
Expand Down

0 comments on commit 5a1633d

Please sign in to comment.