Use private parameter properties

This commit is contained in:
J. Ryan Stinnett 2021-04-26 14:54:36 +01:00
parent a3a756fdb2
commit 83596c7335

View file

@ -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;