export.get.ts 292 Bytes
import type { DashboardOverviewQuery } from '../../../../app/types'
import { exportDashboardOverview } from '../../../utils/mock-dashboard-overview'

export default eventHandler((event) => {
  const query = getQuery(event) as DashboardOverviewQuery
  return exportDashboardOverview(query)
})