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