import { listNotifications } from './client.ts'
import type { ListNotificationsInput } from './types.ts'
/**
* List authenticated Bluesky notifications for the current account.
* @returns Notification page with `notifications` and optional `cursor`.
* @example
* import listNotifications from 'kody:@kody/bluesky/list-notifications'
* const result = await listNotifications({ limit: 20 })
* // => { notifications: [...], cursor: '...' }
*/
export default async function listNotificationsEntrypoint(params: ListNotificationsInput = {}) {
return await listNotifications(params)
}