import { EventEmitter } from '@angular/core'; /** * Global service provided by the CoreApp. Here, you can do core functions, shuch as refresh certain views. * * @export * @class CoreService */ export declare class CoreService { /** * This event refreshes the list views of the application. * * @type {EventEmitter} * @memberof CoreService */ refreshListView: EventEmitter; /** * This event refreshes the detail/show views. * * @type {EventEmitter} * @memberof CoreService */ refreshDetailView: EventEmitter; }