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