27 lines
671 B
TypeScript
Raw Normal View History

2020-01-15 15:35:25 +09:00
import { Component, OnInit, Input } from '@angular/core';
import { VideoConferenceContentsType } from '@ucap-webmessenger/protocol-event';
import {
VideoConferenceEventJson,
Info
} from '@ucap-webmessenger/protocol-event';
2019-10-07 13:49:12 +09:00
@Component({
selector: 'ucap-chat-message-box-video-conference',
templateUrl: './video-conference.component.html',
styleUrls: ['./video-conference.component.scss']
})
export class VideoConferenceComponent implements OnInit {
2020-01-15 15:35:25 +09:00
@Input()
message: Info<VideoConferenceEventJson>;
VideoConferenceContentsType = VideoConferenceContentsType;
2019-10-07 13:49:12 +09:00
constructor() {}
ngOnInit() {}
2020-01-15 15:35:25 +09:00
onClickDetailView() {}
onClickEnjoyConference() {}
2019-10-07 13:49:12 +09:00
}