@nstudio/schematics
Version:
Cross-platform (xplat) tools for Nx workspaces.
17 lines (12 loc) • 474 B
text/typescript
import { Component, Input, Output, EventEmitter } from '@angular/core';
// libs
import { BaseComponent } from '@<%= npmScope %>/core/base';
export abstract class HeaderBaseComponent extends BaseComponent {
/**
* These are just samples to give you an idea of what can be done.
* Change, remove and customize however you'd like!
*/
() title: string;
() rightButton: string;
() tappedRight: EventEmitter<boolean> = new EventEmitter();
}