mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-27 09:29:59 -04:00
20 lines
356 B
TypeScript
20 lines
356 B
TypeScript
![]() |
import {EventEmitter, Component, Input, Output} from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
selector: "strongs",
|
||
|
templateUrl: "strongs.html"
|
||
|
})
|
||
|
export class Strongs {
|
||
|
@Output()
|
||
|
onClose = new EventEmitter<StrongsResult>();
|
||
|
|
||
|
@Input()
|
||
|
item: StrongsResult;
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
|
||
|
close() {
|
||
|
this.onClose.emit(this.item);
|
||
|
}
|
||
|
}
|