28 lines
489 B
TypeScript
28 lines
489 B
TypeScript
|
import {
|
||
|
AfterContentInit, Component, EventEmitter,
|
||
|
OnInit, Output
|
||
|
} from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-discovery-search-config',
|
||
|
templateUrl: './search-config.component.html',
|
||
|
})
|
||
|
export class SearchConfigComponent implements OnInit, AfterContentInit {
|
||
|
|
||
|
@Output() discoverySearchStartClick = new EventEmitter();
|
||
|
|
||
|
constructor(
|
||
|
) {
|
||
|
}
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
ngAfterContentInit() {
|
||
|
}
|
||
|
|
||
|
discoveryStartClick() {
|
||
|
this.discoverySearchStartClick.emit();
|
||
|
}
|
||
|
}
|