21 lines
490 B
TypeScript
Raw Normal View History

import { Component, OnInit, Input } from '@angular/core';
2019-10-08 13:31:33 +09:00
import { Info } from '@ucap-webmessenger/protocol-event';
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
@Component({
selector: 'ucap-chat-messages',
templateUrl: './messages.component.html',
styleUrls: ['./messages.component.scss']
})
export class MessagesComponent implements OnInit {
@Input()
2019-10-08 13:31:33 +09:00
loginRes: LoginResponse;
@Input()
messages: Info[];
constructor() {}
ngOnInit() {}
}