@dicdikshaorg/epub-player-v9
Version:
Contains Epub player library components powered by angular. These components are designed to be used in sunbird consumption platforms *(mobile app, web portal, offline desktop app)* to drive reusability, maintainability hence reducing the redundant develo
25 lines (24 loc) • 578 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;