mocksaml/pages/api/hello.ts

13 lines
236 B
TypeScript
Raw Normal View History

2022-01-09 07:28:39 +00:00
import type { NextApiRequest, NextApiResponse } from 'next';
2022-01-08 15:11:13 +00:00
type Data = {
2022-01-09 07:28:39 +00:00
name: string;
};
2022-01-08 15:11:13 +00:00
2022-01-09 07:28:39 +00:00
export default async function handler(
2022-01-08 15:11:13 +00:00
req: NextApiRequest,
res: NextApiResponse<Data>
) {
2022-01-09 07:28:39 +00:00
res.status(200).json({ name: 'Kiran' });
2022-01-08 15:11:13 +00:00
}