mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
mark StorageHelper.options as private
Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
parent
811476bb70
commit
b3a2abc9d3
@ -58,7 +58,7 @@ export class StorageHelper<T = StorageModel> {
|
||||
return this.options.defaultValue;
|
||||
}
|
||||
|
||||
constructor(readonly key: string, readonly options: StorageHelperOptions<T>) {
|
||||
constructor(readonly key: string, private options: StorageHelperOptions<T>) {
|
||||
this.options = { ...StorageHelper.defaultOptions, ...options };
|
||||
this.configureObservable();
|
||||
this.reset();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user