buncid/dist/test/next-app/my-app/pages/api/hello.d.ts

7 lines
195 B
TypeScript
Raw Permalink Normal View History

2025-02-03 12:41:13 +00:00
import type { NextApiRequest, NextApiResponse } from "next";
type Data = {
name: string;
};
export default function handler(req: NextApiRequest, res: NextApiResponse<Data>): void;
export {};