import {isNotification} from "../../is-notification.mjs";
import {UPLOAD_PROGRESS_NOTIFICATION_NAME} from "./upload-progress-notification-name.constant.mjs";
export function isUploadProgressNotification(value) {
return isNotification(value, UPLOAD_PROGRESS_NOTIFICATION_NAME);
}