mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
16 lines
228 B
TypeScript
16 lines
228 B
TypeScript
import { Task } from '$prisma/client'
|
|
|
|
export type Methods = {
|
|
get: {
|
|
query?: {
|
|
limit?: number
|
|
message?: string
|
|
}
|
|
|
|
resBody: Task[]
|
|
}
|
|
post: {
|
|
reqBody: Pick<Task, 'label'>
|
|
resBody: Task
|
|
}
|
|
}
|