UNPKG

tutorbook

Version:

Web app connecting students with expert mentors and tutors.

9 lines (6 loc) 225 B
import { NextApiRequest, NextApiResponse } from 'next'; export type DeleteUserResponse = void; export default async function deleteUser( req: NextApiRequest, res: NextApiResponse<DeleteUserResponse> ): Promise<void> {}