import {isNotification} from "../../is-notification.mjs";
import {DOWNLOAD_PROGRESS_NOTIFICATION_NAME} from "./download-progress-notification-name.constant.mjs";
export function isDownloadProgressNotification(value) {
return isNotification(value, DOWNLOAD_PROGRESS_NOTIFICATION_NAME);
}