mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 02:35:48 +03:00
Use private parameter properties
This commit is contained in:
parent
a3a756fdb2
commit
83596c7335
1 changed files with 1 additions and 3 deletions
|
@ -30,13 +30,11 @@ const imApiVersion = "1.1";
|
||||||
// TODO: Generify the name of this class and all components within - it's not just for Scalar.
|
// TODO: Generify the name of this class and all components within - it's not just for Scalar.
|
||||||
|
|
||||||
export default class ScalarAuthClient {
|
export default class ScalarAuthClient {
|
||||||
private apiUrl: string;
|
|
||||||
private uiUrl: string;
|
|
||||||
private scalarToken: string;
|
private scalarToken: string;
|
||||||
private termsInteractionCallback: TermsInteractionCallback;
|
private termsInteractionCallback: TermsInteractionCallback;
|
||||||
private isDefaultManager: boolean;
|
private isDefaultManager: boolean;
|
||||||
|
|
||||||
constructor(apiUrl, uiUrl) {
|
constructor(private apiUrl: string, private uiUrl: string) {
|
||||||
this.apiUrl = apiUrl;
|
this.apiUrl = apiUrl;
|
||||||
this.uiUrl = uiUrl;
|
this.uiUrl = uiUrl;
|
||||||
this.scalarToken = null;
|
this.scalarToken = null;
|
||||||
|
|
Loading…
Reference in a new issue