feat: add clientOptions setter

This commit is contained in:
Derrick Hammer 2024-03-18 09:14:44 -04:00
parent 1eb9ebbdf8
commit eb242bd3c7
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ export class S5Client {
return this._clientOptions; return this._clientOptions;
} }
get customOptions(): CustomClientOptions { set clientOptions(value: CustomClientOptions) {
return this._customOptions; this._clientOptions = value;
} }
private _portalUrl: string; private _portalUrl: string;