2022-03-07 15:50:27 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import {
|
|
|
|
ChatPanelDirective,
|
|
|
|
LayoutDirective,
|
|
|
|
PanelDirective,
|
2022-03-10 12:33:49 +01:00
|
|
|
ParticipantPanelItemElementsDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ParticipantPanelItemDirective,
|
|
|
|
ParticipantsPanelDirective,
|
|
|
|
StreamDirective,
|
2022-03-10 11:42:48 +01:00
|
|
|
ToolbarAdditionalButtonsDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarDirective
|
|
|
|
} from './openvidu-angular.directive';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
ChatPanelDirective,
|
|
|
|
LayoutDirective,
|
|
|
|
PanelDirective,
|
|
|
|
ParticipantPanelItemDirective,
|
|
|
|
ParticipantsPanelDirective,
|
|
|
|
StreamDirective,
|
2022-03-10 11:42:48 +01:00
|
|
|
ToolbarDirective,
|
2022-03-10 12:33:49 +01:00
|
|
|
ToolbarAdditionalButtonsDirective,
|
|
|
|
ParticipantPanelItemElementsDirective
|
2022-03-07 15:50:27 +01:00
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
ChatPanelDirective,
|
|
|
|
LayoutDirective,
|
|
|
|
PanelDirective,
|
|
|
|
ParticipantPanelItemDirective,
|
|
|
|
ParticipantsPanelDirective,
|
|
|
|
StreamDirective,
|
2022-03-10 11:42:48 +01:00
|
|
|
ToolbarDirective,
|
2022-03-10 12:33:49 +01:00
|
|
|
ToolbarAdditionalButtonsDirective,
|
|
|
|
ParticipantPanelItemElementsDirective
|
2022-03-07 15:50:27 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class OpenViduAngularDirectiveModule {}
|