1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-01 04:43:29 +03:00

Lint pass 3

This commit is contained in:
Travis Ralston
2021-06-01 21:26:29 -06:00
parent 2f87a4859e
commit dfb918adc3
3 changed files with 9 additions and 3 deletions

View File

@@ -4697,7 +4697,13 @@ export class MatrixClient extends EventEmitter {
* @param {string} nextLink As requestEmailToken
* @return {Promise} Resolves: As requestEmailToken
*/
public requestRegisterMsisdnToken(phoneCountry: string, phoneNumber: string, clientSecret: string, sendAttempt: number, nextLink: string): Promise<void> {
public requestRegisterMsisdnToken(
phoneCountry: string,
phoneNumber: string,
clientSecret: string,
sendAttempt: number,
nextLink: string,
): Promise<void> {
return this.requestTokenFromEndpoint(
"/register/msisdn/requestToken",
{

View File

@@ -50,7 +50,7 @@ export class VerificationBase extends EventEmitter {
* @class
*
* TODO: Channel types
* @param {Channel} channel the verification channel to send verification messages over.
* @param {Object} channel the verification channel to send verification messages over.
*
* @param {MatrixClient} baseApis base matrix api interface
*