2019-09-24 09:03:36 +09:00
|
|
|
import { Component, OnInit, Input } from '@angular/core';
|
2019-09-25 17:26:19 +09:00
|
|
|
import { Observable } from 'rxjs';
|
|
|
|
import { UserInfo } from '@ucap-webmessenger/protocol-room';
|
2019-09-24 09:03:36 +09:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'ucap-group-expansion-panel',
|
|
|
|
templateUrl: './expansion-panel.component.html',
|
|
|
|
styleUrls: ['./expansion-panel.component.scss']
|
|
|
|
})
|
|
|
|
export class ExpansionPanelComponent implements OnInit {
|
|
|
|
@Input()
|
2019-09-25 17:26:19 +09:00
|
|
|
buddyInfoList$: Observable<UserInfo[]>;
|
2019-09-24 09:03:36 +09:00
|
|
|
|
|
|
|
constructor() {}
|
|
|
|
|
|
|
|
ngOnInit() {}
|
|
|
|
}
|