You've already forked matrix-js-sdk
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:
@@ -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",
|
||||
{
|
||||
|
||||
@@ -66,5 +66,5 @@ export interface IKeyBackupRestoreResult {
|
||||
|
||||
export interface IKeyBackupRestoreOpts {
|
||||
cacheCompleteCallback?: () => void;
|
||||
progressCallback?: ({stage: string}) => void;
|
||||
progressCallback?: ({ stage: string }) => void;
|
||||
}
|
||||
|
||||
@@ -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
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user