feat: add portalUrl getter

This commit is contained in:
Derrick Hammer 2023-07-18 16:19:14 -04:00
parent 61292f5dea
commit 0d0b2d4799
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 0 deletions

View File

@ -70,6 +70,10 @@ export class Client {
return this._options.email as string;
}
get portalUrl(): string {
return this._options.portalUrl as string;
}
set email(email: string) {
this._options.email = email;
}