hydrogen-web/src/matrix/LoginMethod.js

12 lines
275 B
JavaScript
Raw Normal View History

export class LoginMethod {
constructor({homeServer, platform}) {
this.homeServer = homeServer;
this._platform = platform;
}
// eslint-disable-next-line no-unused-vars
async login(hsApi, deviceName) {
throw("Not Implemented");
}
}