UNPKG

ng2-encrm-components

Version:
23 lines (14 loc) 475 B
import { Component, OnInit, Output, Input, EventEmitter } from '@angular/core'; const id: string = 'bs4-table-details'; @Component({ selector: id, template: require(`./${id}.component.html`), styles: [require(`./${id}.component.scss`)] }) export class Bs4TableDetails implements OnInit { @Output() goBack: EventEmitter<boolean> = new EventEmitter<boolean>(); @Input() backButton: string = 'Go back'; constructor() { } ngOnInit() { } }