videogular2
Version:
Videogular is a video application framework for desktop and mobile powered by Angular 2.0
22 lines (17 loc) • 347 B
Markdown
## videogular2/core
Main module, it creates the `VgAPI` and contains some required components and directives like `VgPlayer` and `VgMedia`.
Import definition:
```typescript
...
import { VgCoreModule } from 'videogular2/core';
@NgModule({
...
imports: [
...
VgCoreModule
],
...
})
export class AppModule {
}
```