test/fixtures/sample-files-extends/src/app/another-component.component.ts
The main component
selector | app-yo |
template |
|
Properties |
|
Methods |
Inputs |
Outputs |
itisme | |
Type : string
|
|
myoutput | |
ngOnInit |
ngOnInit()
|
Returns :
void
|
Public myprop |
import { Component, Input, Output, OnInit } from '@angular/core';
import { InputBase } from './input-base';
/**
* The main component
*/
@Component({
selector: 'app-yo',
template: 'YO'
})
export class AnotherComponent implements OnInit {
@Input() public itisme: string;
@Output() public myoutput;
public myprop;
ngOnInit() {}
}