17 lines
440 B
TypeScript
Raw Normal View History

2019-11-06 13:48:06 +09:00
import { Component, OnInit, Input } from '@angular/core';
import { Info, TranslationEventJson } from '@ucap-webmessenger/protocol-event';
2019-10-07 13:49:12 +09:00
@Component({
selector: 'ucap-chat-message-box-translation',
templateUrl: './translation.component.html',
styleUrls: ['./translation.component.scss']
})
export class TranslationComponent implements OnInit {
2019-11-06 13:48:06 +09:00
@Input()
message: Info<TranslationEventJson>;
2019-10-07 13:49:12 +09:00
constructor() {}
ngOnInit() {}
}