2022-01-19 17:24:11 +01:00
|
|
|
/*
|
|
|
|
* Public API Surface of openvidu-components-angular
|
|
|
|
*/
|
|
|
|
|
2022-01-20 09:58:12 +01:00
|
|
|
export * from './lib/openvidu-angular.module';
|
2022-01-19 17:24:11 +01:00
|
|
|
|
|
|
|
// Services
|
|
|
|
export * from './lib/services/webrtc/webrtc.service';
|
|
|
|
export * from './lib/services/participant/participant.service';
|
|
|
|
export * from './lib/services/chat/chat.service';
|
|
|
|
export * from './lib/services/platform/platform.service';
|
|
|
|
export * from './lib/services/logger/logger.service';
|
|
|
|
export * from './lib/services/library-config/library-config.service';
|
|
|
|
export * from './lib/services/document/document.service';
|
|
|
|
export * from './lib/services/token/token.service';
|
|
|
|
export * from './lib/services/device/device.service';
|
|
|
|
export * from './lib/services/action/action.service';
|
|
|
|
export * from './lib/services/layout/layout.service';
|
|
|
|
export * from './lib/services/sidenav-menu/sidenav-menu.service';
|
|
|
|
export * from './lib/services/cdk-overlay/cdk-overlay.service';
|
|
|
|
export * from './lib/services/storage/storage.service';
|
|
|
|
|
|
|
|
// Components
|
2022-01-20 11:53:56 +01:00
|
|
|
export * from './lib/components/videoconference/videoconference.component';
|
2022-01-19 17:24:11 +01:00
|
|
|
export * from './lib/components/user-settings/user-settings.component';
|
|
|
|
export * from './lib/components/toolbar/toolbar.component';
|
2022-02-02 13:44:49 +01:00
|
|
|
export * from './lib/components/panel/chat-panel/chat-panel.component';
|
|
|
|
export * from './lib/components/panel/participants-panel/participants-panel/participants-panel.component';
|
2022-01-26 11:30:30 +01:00
|
|
|
export * from './lib/components/session/session.component';
|
2022-01-19 17:24:11 +01:00
|
|
|
export * from './lib/components/layout/layout.component';
|
2022-01-26 11:30:30 +01:00
|
|
|
export * from './lib/components/stream/stream.component';
|
2022-01-19 17:24:11 +01:00
|
|
|
export * from './lib/components/video/video.component';
|
2022-02-11 16:26:46 +01:00
|
|
|
export * from './lib/components/audio-wave/audio-wave.component';
|
2022-01-19 17:24:11 +01:00
|
|
|
|
|
|
|
// Models
|
|
|
|
export * from './lib/models/participant.model';
|
|
|
|
export * from './lib/config/lib.config';
|
|
|
|
export * from './lib/models/logger.model';
|
|
|
|
export * from './lib/models/video-type.model';
|
|
|
|
export * from './lib/models/notification-options.model';
|
|
|
|
|
|
|
|
// Pipes
|
2022-02-11 13:18:50 +01:00
|
|
|
export * from './lib/pipes/participant-connections.pipe';
|
|
|
|
|
|
|
|
// Directives
|
|
|
|
export * from './lib/directives/stream/stream.directive';
|