import { Input, TemplateRef } from '@angular/core'; /** * Card base component * * For customization, use the templates named headerTemplate and footerTemplate. */ export abstract class CardBase { /** * The name of the template containing footer layout */ @Input() footerTemplate: TemplateRef; /** * The name of the template containing header layout */ @Input() headerTemplate: TemplateRef; /** * The default constructor */ constructor() { } }