UNPKG

naystack

Version:

A stack built with tight Next + Drizzle + GraphQL

9 lines (6 loc) 326 B
import * as next_server from 'next/server'; import { NextRequest } from 'next/server'; import { InitRoutesOptions } from '../types.js'; import '../../types.js'; declare const getPostRoute: (options: InitRoutesOptions) => (req: NextRequest) => Promise<next_server.NextResponse<unknown> | undefined>; export { getPostRoute };