import {UPLOAD_COMPLETE_NOTIFICATION_NAME} from "./upload-complete-notification-name.constant.mjs";
import {isNotification} from "../../is-notification.mjs";
export function isUploadCompleteNotification(value) {
return isNotification(value, UPLOAD_COMPLETE_NOTIFICATION_NAME);
}