naystack
Version:
A stack built with tight Next + Drizzle + GraphQL
9 lines (6 loc) • 328 B
text/typescript
import * as next_server from 'next/server';
import { NextRequest } from 'next/server';
import { InitRoutesOptions } from '../types.mjs';
import '../../types.mjs';
declare const getPostRoute: (options: InitRoutesOptions) => (req: NextRequest) => Promise<next_server.NextResponse<unknown> | undefined>;
export { getPostRoute };