@project-sunbird/sunbird-epub-player-v9
Version:
The Epub player library is powered by Angular. This player is primarily designed to be used on Sunbird consumption platforms _(mobile app, web portal, offline desktop app)_ to drive reusability and maintainability, hence reducing the redundant development
25 lines (24 loc) • 554 B
TypeScript
import { Rule } from '@angular-devkit/schematics';
import { Schema } from '../schema';
/**
* Patches main application module by adding 'SunbirdEpubPlayerModule' import.
*
* Relevant 'angular.json' structure is:
*
* {
* "projects" : {
* "projectName": {
* "architect": {
* "build": {
* "options": {
* "main": "src/main.ts"
* }
* }
* }
* }
* },
* "defaultProject": "projectName"
* }
*
*/
export declare function addPlayerModuleToAppModule(options: Schema): Rule;