UNPKG

next-rest-framework

Version:

Next REST Framework - write type-safe, self-documenting REST APIs in Next.js

5 lines (4 loc) 222 B
import { type NextResponse } from 'next/server'; import { type NextApiResponse } from 'next/types'; export type TypedNextResponse<Body> = NextResponse<Body>; export type TypedNextApiResponse<Body> = NextApiResponse<Body>;