1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/frourio/server/api/tasks/index.ts

17 lines
228 B
TypeScript
Raw Normal View History

2020-11-19 16:16:33 +09:00
import { Task } from '$prisma/client'
2020-10-12 13:35:33 +09:00
export type Methods = {
get: {
query?: {
limit?: number
2020-11-19 16:16:33 +09:00
message?: string
2020-10-12 13:35:33 +09:00
}
resBody: Task[]
}
post: {
reqBody: Pick<Task, 'label'>
resBody: Task
}
}