“Next API TypeScript” Kode Jawaban

nextjs API contoh naskah

import type { NextApiRequest, NextApiResponse } from "next";

type Data = {
  name: string;
};

const handler = (req: NextApiRequest, res: NextApiResponse<Data>) => {
  res.status(200).json({ name: "John Doe" });
};

export default handler;
Bewildered Bug

Next API TypeScript

import type { NextApiRequest, NextApiResponse } from 'next'

type Data = {
  name: string
}

export default (req: NextApiRequest, res: NextApiResponse<Data>) => {
  res.status(200).json({ name: 'John Doe' })
}
Aggressive Addax

Jawaban yang mirip dengan “Next API TypeScript”

Pertanyaan yang mirip dengan “Next API TypeScript”

Lebih banyak jawaban terkait untuk “Next API TypeScript” di TypeScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya