import { Injectable } from '@angular/core'; import { InternalStorage } from '../utils/storage.util'; @Injectable({ providedIn: 'root' }) export class StorageService { #storage: InternalStorage = new InternalStorage(); public get storage(){ return this.#storage; } }