UNPKG

@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

13 lines (12 loc) 614 B
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Tree } from '@angular-devkit/schematics'; /** Adds a package to the package.json in the given host tree. */ export declare function addPackageToPackageJson(host: Tree, pkg: string, version: string): Tree; /** Gets the version of the specified package by looking at the package.json in the given tree. */ export declare function getPackageVersionFromPackageJson(tree: Tree, name: string): string | null;