@lifaon/rx-js-light
Version:
Blazing fast Observables
12 lines (11 loc) • 607 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createDownloadProgressNotification = void 0;
var download_progress_notification_name_constant_1 = require("./download-progress-notification-name.constant.cjs");
var create_notification_1 = require("../../create-notification.cjs");
function createDownloadProgressNotification(progress) {
return (0, create_notification_1.createNotification)(download_progress_notification_name_constant_1.DOWNLOAD_PROGRESS_NOTIFICATION_NAME, progress);
}
exports.createDownloadProgressNotification = createDownloadProgressNotification;