import { Injectable } from '@angular/core'; @Injectable() export class StoreService { data: any; public clear() { this.data = undefined; } }