mirror of https://github.com/OpenVidu/openvidu.git
36 lines
721 B
TypeScript
36 lines
721 B
TypeScript
![]() |
import { NgModule } from '@angular/core';
|
||
|
import {
|
||
|
ChatPanelDirective,
|
||
|
LayoutDirective,
|
||
|
OvImageDirective,
|
||
|
PanelDirective,
|
||
|
ParticipantPanelItemDirective,
|
||
|
ParticipantsPanelDirective,
|
||
|
StreamDirective,
|
||
|
ToolbarDirective
|
||
|
} from './openvidu-angular.directive';
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
ChatPanelDirective,
|
||
|
LayoutDirective,
|
||
|
OvImageDirective,
|
||
|
PanelDirective,
|
||
|
ParticipantPanelItemDirective,
|
||
|
ParticipantsPanelDirective,
|
||
|
StreamDirective,
|
||
|
ToolbarDirective
|
||
|
],
|
||
|
exports: [
|
||
|
ChatPanelDirective,
|
||
|
LayoutDirective,
|
||
|
OvImageDirective,
|
||
|
PanelDirective,
|
||
|
ParticipantPanelItemDirective,
|
||
|
ParticipantsPanelDirective,
|
||
|
StreamDirective,
|
||
|
ToolbarDirective
|
||
|
]
|
||
|
})
|
||
|
export class OpenViduAngularDirectiveModule {}
|