forked from videogular/videogular2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.ts
25 lines (22 loc) · 973 Bytes
/
core.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import {VgPlayer} from './src/vg-player/vg-player';
import {VgMedia} from './src/vg-media/vg-media';
import {VgCuePoints} from './src/vg-cue-points/vg-cue-points';
import {VgAPI} from './src/services/vg-api';
import {VgFullscreenAPI} from './src/services/vg-fullscreen-api';
import {VgUtils} from './src/services/vg-utils';
import {VgEvents} from './src/events/vg-events';
import {VgStates} from './src/states/vg-states';
export * from './src/services/vg-api';
export * from './src/services/vg-fullscreen-api';
export * from './src/services/vg-utils';
export * from './src/events/vg-events';
export * from './src/states/vg-states';
@NgModule({
imports: [ CommonModule ],
declarations: [ VgPlayer, VgMedia, VgCuePoints ],
providers: [ VgAPI, VgFullscreenAPI, VgUtils, VgEvents, VgStates ],
exports: [ VgPlayer, VgMedia, VgCuePoints ]
})
export class VgCore {}