import {Injectable} from "@angular/core"; /** * This map contains the message bodies * messages identified by their key. * It can be replaced later by another data source * like an external service. * * @author Daniel de Oliveira * @author Jan G. Wieners */ @Injectable() export abstract class MD { // = Messages Dictionary. For reasons of brevity of calls to it just "MD". public msgs: any; }