525e58128d9db352fcfff5edc92ab130f1659d01
[ccsdk/cds.git] /
1 import { Component, OnInit, Output, EventEmitter } from '@angular/core';
2
3 @Component({
4   selector: 'app-templ-mapp-listing',
5   templateUrl: './templ-mapp-listing.component.html',
6   styleUrls: ['./templ-mapp-listing.component.css']
7 })
8 export class TemplMappListingComponent implements OnInit {
9   @Output() showCreationViewParentNotification = new EventEmitter<any>();
10
11   constructor() { }
12
13   ngOnInit() {
14   }
15
16   openCreationView() {
17     this.showCreationViewParentNotification.emit('tell parent to open create views');
18   }
19
20 }