UNPKG
tutorbook
Version:
latest (0.8.2)
0.8.2
0.7.9
Web app connecting students with expert mentors and tutors.
tutorbook.org
tutorbookapp/tutorbook
tutorbook
/
src
/
api
/
delete-user.ts
9 lines
(6 loc)
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
NextApiRequest
,
NextApiResponse
}
from
'next'
;
export
type
DeleteUserResponse
=
void
;
export
default
async
function
deleteUser
(
req: NextApiRequest, res: NextApiResponse<DeleteUserResponse>
):
Promise
<
void
> {}