cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
17 lines (16 loc) • 466 B
TypeScript
/**
* Object containing URLs for notification-related endpoints.
* These URLs are used for various notification operations such as getting notifications, marking as read, etc.
*/
declare const notificationRoutesUrl: {
module: string;
/**
* Endpoint to get notifications (notifications)
*/
notifications: string;
/**
* Endpoint to get unread count (unread-count)
*/
unreadCount: string;
};
export { notificationRoutesUrl };