import {createNotification} from "../../create-notification.mjs";
import {NEXT_NOTIFICATION_NAME} from "./next-notification-name.constant.mjs";
export function createNextNotification(value) {
return createNotification(NEXT_NOTIFICATION_NAME, value);
}