test/fixtures/sample-files-extends/src/app/input-base.ts
Properties |
|
Methods |
|
Inputs |
Outputs |
Public id |
Type : string
|
Default value : 'yo'
|
Public thefx |
thefx()
|
Returns :
void
|
externalLabel | |
Type : string
|
|
theoutput | |
import { Input, Output } from '@angular/core';
export class InputBase {
public id = 'yo';
public thefx() {}
@Input() public externalLabel: string;
@Output() public theoutput;
}