17 lines
440 B
TypeScript
17 lines
440 B
TypeScript
import { Component, OnInit, Input } from '@angular/core';
|
|
import { Info, TranslationEventJson } from '@ucap-webmessenger/protocol-event';
|
|
|
|
@Component({
|
|
selector: 'ucap-chat-message-box-translation',
|
|
templateUrl: './translation.component.html',
|
|
styleUrls: ['./translation.component.scss']
|
|
})
|
|
export class TranslationComponent implements OnInit {
|
|
@Input()
|
|
message: Info<TranslationEventJson>;
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|