18 lines
463 B
TypeScript
Raw Normal View History

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';
@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[]>;
constructor() {}
ngOnInit() {}
}