Interface NotificationRepository

interface NotificationRepository {
    $select(id): {
        dismiss(meta?): Promise<void>;
        fetch(meta?): Promise<Notification>;
    };
    clear(meta?): Promise<void>;
    list(params?, meta?): Paginator<Notification[], ListNotificationsParams>;
}

Methods