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

16 lines 608 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.noModuleFile = exports.noMainFile = exports.noProject = void 0; function noProject(project) { return `Unable to find project '${project}' in the workspace`; } exports.noProject = noProject; function noMainFile(projectName) { return `Unable to find 'build.options.main' file path for project "${projectName}"`; } exports.noMainFile = noMainFile; function noModuleFile(moduleFilePath) { return `File '${moduleFilePath}' does not exist.`; } exports.noModuleFile = noModuleFile; //# sourceMappingURL=messages.js.map