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